diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-12-09 01:31:54 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-12-09 01:31:57 +0100 |
commit | a79ebde4099f4e5cd201f077793867235ac6501b (patch) | |
tree | aef56362cbfd2cc8cb026274606b031b734c4520 /ipc | |
parent | 7da2d8a6182bf258a2a6b415858419073b94d76a (diff) | |
download | gnumach-a79ebde4099f4e5cd201f077793867235ac6501b.tar.gz gnumach-a79ebde4099f4e5cd201f077793867235ac6501b.tar.bz2 gnumach-a79ebde4099f4e5cd201f077793867235ac6501b.zip |
Fix ipc_mqueue_receive locking documentation
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_mqueue.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ipc/ipc_mqueue.c b/ipc/ipc_mqueue.c index 95308f35..cfd72ca3 100644 --- a/ipc/ipc_mqueue.c +++ b/ipc/ipc_mqueue.c @@ -495,7 +495,8 @@ ipc_mqueue_copyin( * If resume is true, then we are resuming a receive * operation after a blocked receive discarded our stack. * Conditions: - * The message queue is locked; it will be returned unlocked. + * The message queue is locked (unless resume is true); it + * will be returned unlocked. * * Our caller must hold a reference for the port or port set * to which this queue belongs, to keep the queue |