Source-Changes-HG archive

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

[src/trunk]: src/sys/sys Put the type of p_tracep back to void *; it is an im...



details:   https://anonhg.NetBSD.org/src/rev/1f36f5bc6ff0
branches:  trunk
changeset: 570021:1f36f5bc6ff0
user:      enami <enami%NetBSD.org@localhost>
date:      Fri Sep 17 23:26:42 2004 +0000

description:
Put the type of p_tracep back to void *; it is an implementation detail and
no need to expose to the rest of kernel.

diffstat:

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

diffs (18 lines):

diff -r c49f9ce50f9a -r 1f36f5bc6ff0 sys/sys/proc.h
--- a/sys/sys/proc.h    Fri Sep 17 23:24:03 2004 +0000
+++ b/sys/sys/proc.h    Fri Sep 17 23:26:42 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: proc.h,v 1.193 2004/08/08 08:42:03 jdolecek Exp $      */
+/*     $NetBSD: proc.h,v 1.194 2004/09/17 23:26:42 enami Exp $ */
 
 /*-
  * Copyright (c) 1986, 1989, 1991, 1993
@@ -209,7 +209,7 @@
        u_quad_t        p_iticks;       /* Statclock hits processing intr */
 
        int             p_traceflag;    /* Kernel trace points */
-       struct file     *p_tracep;      /* Trace to file */
+       void            *p_tracep;      /* Trace private data */
        void            *p_systrace;    /* Back pointer to systrace */
 
        struct vnode    *p_textvp;      /* Vnode of executable */



Home | Main Index | Thread Index | Old Index