Message passing / mail system
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m20s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m20s
This commit is contained in:
@@ -13,9 +13,3 @@ int process_spawn (process_func_t func, void* argument_ptr) {
|
||||
uintptr_t top = (uintptr_t)stack + STACK_SIZE;
|
||||
return clone (top, func, argument_ptr);
|
||||
}
|
||||
|
||||
int process_quit (void) { return quit (); }
|
||||
|
||||
void* process_argument (void) { return argument_ptr (); }
|
||||
|
||||
int process_exec (const char* path) { return exec (path); }
|
||||
|
||||
@@ -12,13 +12,4 @@ typedef void (*process_func_t) (void);
|
||||
/* Spawn a new process within the same procgroup with argument */
|
||||
int process_spawn (process_func_t func, void* argument_ptr);
|
||||
|
||||
/* Quit the current process */
|
||||
int process_quit (void);
|
||||
|
||||
/* Get process argument pointer */
|
||||
void* process_argument (void);
|
||||
|
||||
/* Run ELF process */
|
||||
int process_exec (const char* path);
|
||||
|
||||
#endif // _LIBPROCESS_PROCESS_PROCESS_H
|
||||
|
||||
Reference in New Issue
Block a user