aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-12-31 13:23:16 +0000
committerBruce Evans <bde@FreeBSD.org>1998-12-31 13:23:16 +0000
commita4e7707552d88ad0027ff453e0937a78ef006ba7 (patch)
tree23709f9574edec1a9e71df41f96a47c5848b7e1f
parentbce191bf65664c0a4344a6eae799a5440b0943a9 (diff)
Notes
-rw-r--r--sys/sys/proc.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index 71b59a8b2e8c..d590b426bdba 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)proc.h 8.15 (Berkeley) 5/19/95
- * $Id: proc.h,v 1.63 1998/12/19 02:55:34 julian Exp $
+ * $Id: proc.h,v 1.64 1998/12/21 07:41:50 dillon Exp $
*/
#ifndef _SYS_PROC_H_
@@ -95,16 +95,14 @@ struct procsig {
#endif /* COMPAT_LINUX_THREADS */
-
/*
- * pasleep structure, used by asleep() syscall to hold requested priority and
- * timeout values for await().
+ * pasleep structure, used by asleep() syscall to hold requested priority
+ * and timeout values for await().
*/
-
struct pasleep {
- int as_priority; /* async priority */
- int as_timo; /* async timeout */
-} pasleep;
+ int as_priority; /* Async priority. */
+ int as_timo; /* Async timeout. */
+};
/*
* Description of a process.
@@ -244,7 +242,7 @@ struct proc {
int p_wakeup; /* thread id */
struct proc *p_peers;
struct proc *p_leader;
- struct pasleep p_asleep; /* used by asleep()/await() */
+ struct pasleep p_asleep; /* Used by asleep()/await(). */
};
#define p_session p_pgrp->pg_session