Small fixes
- do_sync_ipc() is private - fixed typo in a comment
This commit is contained in:
parent
a774cc832f
commit
987b87e2ad
1 changed files with 2 additions and 2 deletions
|
@ -241,9 +241,9 @@ check_misc_flags:
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* handler for all synchronous IPC callsi
|
* handler for all synchronous IPC calls
|
||||||
*/
|
*/
|
||||||
PUBLIC int do_sync_ipc(struct proc * caller_ptr, /* who made the call */
|
PRIVATE int do_sync_ipc(struct proc * caller_ptr, /* who made the call */
|
||||||
int call_nr, /* system call number and flags */
|
int call_nr, /* system call number and flags */
|
||||||
endpoint_t src_dst_e, /* src or dst of the call */
|
endpoint_t src_dst_e, /* src or dst of the call */
|
||||||
message *m_ptr) /* users pointer to a message */
|
message *m_ptr) /* users pointer to a message */
|
||||||
|
|
Loading…
Reference in a new issue