[BACK]Return to proc.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / sys

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/sys/proc.h between version 1.174 and 1.175

version 1.174, 2003/10/09 14:00:34 version 1.175, 2003/11/04 16:19:52
Line 149  struct emul {
Line 149  struct emul {
  * are always addressible except for those marked "(PROC ONLY)" below,   * are always addressible except for those marked "(PROC ONLY)" below,
  * which might be addressible only on a processor on which the process   * which might be addressible only on a processor on which the process
  * is running.   * is running.
    *
    * Fields marked 'p:' are protected by the process's own p_lock.
  */   */
 struct proc {  struct proc {
         LIST_ENTRY(proc) p_list;        /* List of all processes */          LIST_ENTRY(proc) p_list;        /* List of all processes */
Line 179  struct proc {
Line 181  struct proc {
         LIST_ENTRY(proc) p_sibling;     /* List of sibling processes. */          LIST_ENTRY(proc) p_sibling;     /* List of sibling processes. */
         LIST_HEAD(, proc) p_children;   /* Pointer to list of children. */          LIST_HEAD(, proc) p_children;   /* Pointer to list of children. */
   
         struct simplelock p_lwplock;    /* Lock on LWP-related state. */          struct simplelock p_lock;       /* Lock on proc state (p:) */
   
         LIST_HEAD(, lwp) p_lwps;        /* Pointer to list of LWPs. */          LIST_HEAD(, lwp) p_lwps;        /* p: Pointer to list of LWPs. */
   
         LIST_HEAD(, ras) p_raslist;     /* Pointer to RAS queue */          LIST_HEAD(, ras) p_raslist;     /* p: Pointer to RAS queue */
         u_int p_nras;                   /* number of RASs */          u_int           p_nu;           /* unused: was number of RASs */
         struct simplelock p_raslock;    /* Lock for RAS queue */          struct simplelock p_nu2;        /* unused: was Lock for RAS queue */
   
 /* The following fields are all zeroed upon creation in fork. */  /* The following fields are all zeroed upon creation in fork. */
 #define p_startzero     p_nlwps  #define p_startzero     p_nlwps
   
         int             p_nlwps;        /* Number of LWPs */          int             p_nlwps;        /* p: Number of LWPs */
         int             p_nrlwps;       /* Number of running LWPs */          int             p_nrlwps;       /* p: Number of running LWPs */
         int             p_nzlwps;       /* Number of zombie LWPs */          int             p_nzlwps;       /* p: Number of zombie LWPs */
         int             p_nlwpid;       /* Next LWP ID */          int             p_nlwpid;       /* p: Next LWP ID */
   
         struct sadata   *p_sa;          /* Scheduler activation information */          struct sadata   *p_sa;          /* Scheduler activation information */
   

Legend:
Removed from v.1.174  
changed lines
  Added in v.1.175

CVSweb <webmaster@jp.NetBSD.org>