diff options
author | jamie <jamie@FreeBSD.org> | 2016-06-15 01:54:17 +0000 |
---|---|---|
committer | jamie <jamie@FreeBSD.org> | 2016-06-15 01:54:17 +0000 |
commit | d7aadcbe8c8711fd02ae2ce7da26b1ed7efc2ea7 (patch) | |
tree | 6fe03a9a738d09f035ea5401303948dba153de2d /sys/kern | |
parent | bf0749f11aeebf179f7e14eb7df95a6fb4652280 (diff) | |
download | FreeBSD-src-d7aadcbe8c8711fd02ae2ce7da26b1ed7efc2ea7.zip FreeBSD-src-d7aadcbe8c8711fd02ae2ce7da26b1ed7efc2ea7.tar.gz |
MFC r301737:
Remove a comment that was part of copied code, and is misleading in
the new location.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/sysv_msg.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/kern/sysv_msg.c b/sys/kern/sysv_msg.c index dcbe092..508f74e 100644 --- a/sys/kern/sysv_msg.c +++ b/sys/kern/sysv_msg.c @@ -326,12 +326,6 @@ msgunload() #endif for (msqid = 0; msqid < msginfo.msgmni; msqid++) { - /* - * Look for an unallocated and unlocked msqid_ds. - * msqid_ds's can be locked by msgsnd or msgrcv while - * they are copying the message in/out. We can't - * re-use the entry until they release it. - */ msqkptr = &msqids[msqid]; if (msqkptr->u.msg_qbytes != 0 || (msqkptr->u.msg_perm.mode & MSG_LOCKED) != 0) |