2023-05-26 22:21:07 +03:00
|
|
|
#ifndef _SYS_SYSCALL_H
|
|
|
|
#define _SYS_SYSCALL_H 1
|
2023-04-12 17:53:02 +03:00
|
|
|
|
2023-05-26 22:21:07 +03:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
#define SYS_EXIT 1
|
|
|
|
#define SYS_READ 2
|
|
|
|
#define SYS_WRITE 3
|
|
|
|
#define SYS_TERMID 4
|
|
|
|
#define SYS_CLOSE 5
|
|
|
|
#define SYS_OPEN 6
|
2023-06-11 03:27:56 +03:00
|
|
|
#define SYS_OPENAT 7
|
|
|
|
#define SYS_ALLOC 8
|
|
|
|
#define SYS_REALLOC 9
|
|
|
|
#define SYS_FREE 10
|
|
|
|
#define SYS_SEEK 11
|
|
|
|
#define SYS_TELL 12
|
|
|
|
#define SYS_GET_TERMIOS 13
|
|
|
|
#define SYS_SET_TERMIOS 14
|
|
|
|
#define SYS_FORK 15
|
|
|
|
#define SYS_EXEC 16
|
|
|
|
#define SYS_SLEEP 17
|
|
|
|
#define SYS_WAIT 18
|
|
|
|
#define SYS_FSTAT 19
|
|
|
|
#define SYS_SETENVP 20
|
|
|
|
#define SYS_READ_DIR_ENTRIES 21
|
2023-06-11 22:15:35 +03:00
|
|
|
#define SYS_SET_UID 22
|
|
|
|
#define SYS_SET_GID 23
|
|
|
|
#define SYS_SET_EUID 24
|
|
|
|
#define SYS_SET_EGID 25
|
|
|
|
#define SYS_SET_REUID 26
|
|
|
|
#define SYS_SET_REGID 27
|
2023-06-11 22:27:53 +03:00
|
|
|
#define SYS_GET_UID 28
|
|
|
|
#define SYS_GET_GID 29
|
|
|
|
#define SYS_GET_EUID 30
|
|
|
|
#define SYS_GET_EGID 31
|
2023-06-12 01:24:46 +03:00
|
|
|
#define SYS_GET_PWD 32
|
|
|
|
#define SYS_SET_PWD 33
|
2023-07-06 00:38:29 +03:00
|
|
|
#define SYS_CLOCK_GETTIME 34
|
2023-07-06 22:16:26 +03:00
|
|
|
#define SYS_PIPE 35
|
2023-07-06 23:17:54 +03:00
|
|
|
#define SYS_DUP2 36
|
2023-07-21 15:45:02 +03:00
|
|
|
#define SYS_RAISE 37
|
2023-07-21 19:27:38 +03:00
|
|
|
#define SYS_KILL 38
|
2023-07-21 20:08:13 +03:00
|
|
|
#define SYS_SIGNAL 39
|
2023-07-23 13:09:04 +03:00
|
|
|
#define SYS_SIGNAL_DONE 40
|
2023-07-24 22:27:11 +03:00
|
|
|
#define SYS_TCSETPGRP 41
|
|
|
|
#define SYS_GET_PID 42
|
2023-05-26 22:21:07 +03:00
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|