mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-07-10 22:59:22 +00:00
libsys stub
This commit is contained in:
17
libs/include/syslib.h
Normal file
17
libs/include/syslib.h
Normal 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__
|
Reference in New Issue
Block a user