libsys stub

This commit is contained in:
Alex
2022-12-15 02:58:07 +02:00
parent 06eb5a1467
commit 741e1e908f
4 changed files with 78 additions and 0 deletions

17
libs/include/syslib.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef __FENNIX_LIBS_SYS_H__
#define __FENNIX_LIBS_SYS_H__
#include <types.h>
enum KCtl
{
KCTL_NULL,
KCTL_GETPID,
KCTL_GETTID,
KCTL_GETUID,
KCTL_GETGID,
};
long DoCtl(uint64_t Command, uint64_t Arg1, uint64_t Arg2, uint64_t Arg3, uint64_t Arg4);
#endif // !__FENNIX_LIBS_SYS_H__