From a4e7707552d88ad0027ff453e0937a78ef006ba7 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Thu, 31 Dec 1998 13:23:16 +0000 Subject: [PATCH] Removed garbage sloppy-common variable `pasleep'. Fixed other style bugs in previous commit. --- sys/sys/proc.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 71b59a8b2e8..d590b426bdb 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