Move to new processctl syscall, share common kernel and ulib headers

This commit is contained in:
2025-09-05 15:44:57 +02:00
parent ca92a0e6a8
commit 708c53c64d
20 changed files with 98 additions and 27 deletions

View File

@ -1,6 +1,9 @@
#ifndef ULIB_SYSTEM_SYSTEM_H_
#define ULIB_SYSTEM_SYSTEM_H_
#include <stdint.h>
void sys_debugprint(const char *string);
int32_t sys_processctl(uint64_t pid, uint64_t cmd, void *extra);
#endif // ULIB_SYSTEM_SYSTEM_H_