mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 15:34:26 +00:00
18 lines
304 B
C
18 lines
304 B
C
#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__
|