Remove mail_receive_nonblock ()
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m30s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m30s
This commit is contained in:
@@ -61,10 +61,6 @@ int mail_receive (void* mesg, size_t mesg_size) {
|
||||
return (int)do_syscall (SYS_MAIL_RECEIVE, mesg, mesg_size);
|
||||
}
|
||||
|
||||
int mail_receive_nonblock (void* mesg, size_t mesg_size) {
|
||||
return (int)do_syscall (SYS_MAIL_RECEIVE_NONBLOCK, mesg, mesg_size);
|
||||
}
|
||||
|
||||
int get_procgroup (int pid) { return (int)do_syscall (SYS_GET_PROCGROUP, pid); }
|
||||
|
||||
int get_exec_pid (void) { return (int)do_syscall (SYS_GET_EXEC_PID, 0); }
|
||||
|
||||
@@ -63,9 +63,6 @@ int mail_send (int pgid, void* mesg, size_t mesg_size);
|
||||
/* receive a message from mail */
|
||||
int mail_receive (void* mesg, size_t mesg_size);
|
||||
|
||||
/* receive a message from mail without blocking */
|
||||
int mail_receive_nonblock (void* mesg, size_t mesg_size);
|
||||
|
||||
/* get procgroup id of a perticular process */
|
||||
int get_procgroup (int pid);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user