Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/kqueue]: src/sys/sys add struct klist p_klist to struct proc



details:   https://anonhg.NetBSD.org/src/rev/564c1a5b407d
branches:  kqueue
changeset: 512342:564c1a5b407d
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue Jul 10 13:26:11 2001 +0000

description:
add struct klist p_klist to struct proc

diffstat:

 sys/sys/proc.h |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (25 lines):

diff -r 5ab6d2cf6071 -r 564c1a5b407d sys/sys/proc.h
--- a/sys/sys/proc.h    Tue Jul 10 13:25:42 2001 +0000
+++ b/sys/sys/proc.h    Tue Jul 10 13:26:11 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: proc.h,v 1.133 2001/06/18 02:00:55 christos Exp $      */
+/*     $NetBSD: proc.h,v 1.133.2.1 2001/07/10 13:26:11 lukem Exp $     */
 
 /*-
  * Copyright (c) 1986, 1989, 1991, 1993
@@ -55,6 +55,7 @@
 #include <sys/queue.h>
 #include <sys/callout.h>
 #include <sys/signalvar.h>
+#include <sys/event.h>
 
 /*
  * One structure allocated per session.
@@ -205,6 +206,7 @@
                                         * Per-process emulation data, or NULL.
                                         * Malloc type M_EMULDATA
                                         */
+       struct klist    p_klist;        /* Knotes attached to this process */
 
 /*
  * End area that is zeroed on creation



Home | Main Index | Thread Index | Old Index