summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2004-03-13 07:17:40 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2004-03-13 07:17:40 +0000
commite2d65d55d30e1f85418b808663765eb1e0872a67 (patch)
tree3ab317ec02f44d52508b3d92cfd9145224165a91 /sys
parent9a324a777bfee0fb59889138d98cfffb5021b27c (diff)
sync comments with reality, semconfig is long gone.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/sysv_sem.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/sys/kern/sysv_sem.c b/sys/kern/sysv_sem.c
index 6cb8b6a063c..a499b27a73f 100644
--- a/sys/kern/sysv_sem.c
+++ b/sys/kern/sysv_sem.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysv_sem.c,v 1.25 2003/12/20 19:06:29 millert Exp $ */
+/* $OpenBSD: sysv_sem.c,v 1.26 2004/03/13 07:17:39 tedu Exp $ */
/* $NetBSD: sysv_sem.c,v 1.26 1996/02/09 19:00:25 christos Exp $ */
/*
@@ -762,17 +762,13 @@ semexit(struct proc *p)
}
/*
- * No (i.e. we are in case 1 or 2).
- *
- * If there is no undo vector, skip to the end and unlock the
- * semaphore facility if necessary.
+ * If there is no undo vector, skip to the end.
*/
if (suptr == NULL)
return;
/*
- * We are now in case 1 or 2, and we have an undo vector for this
- * process.
+ * We now have an undo vector for this process.
*/
DPRINTF(("proc @%p has undo structure with %d entries\n", p,
suptr->un_cnt));