Go to the source code of this file.
|
int | syscall (int number,...) |
|
unsigned int | sleep (unsigned int seconds) |
|
pid_t | spawn (const char *path, const char *argv[]) |
|
◆ STDERR_FILENO
◆ STDIN_FILENO
◆ STDOUT_FILENO
◆ sleep()
unsigned int sleep |
( |
unsigned int |
seconds | ) |
|
Definition at line 12 of file process.c.
13{
15
16
17 return 0;
18}
int OSThreadSleep(uint64_t time)
◆ spawn()
pid_t spawn |
( |
const char * |
path, |
|
|
const char * |
argv[] |
|
) |
| |
Definition at line 21 of file process.c.
22{
24
27 return -1;
28 }
29
31}
uint64_t OSSpawn(const char *path, const char *argv[])
#define SYSCALL_ERRCODE(_result)
#define SYSCALL_VALUE(_result)
◆ syscall()
int syscall |
( |
int |
number, |
|
|
|
... |
|
) |
| |