Module Name:    src
Committed By:   yamt
Date:           Fri Apr 13 15:32:15 UTC 2012

Modified Files:
        src/sys/kern: kern_proc.c

Log Message:
comment


To generate a diff of this commit:
cvs rdiff -u -r1.182 -r1.183 src/sys/kern/kern_proc.c

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

Modified files:

Index: src/sys/kern/kern_proc.c
diff -u src/sys/kern/kern_proc.c:1.182 src/sys/kern/kern_proc.c:1.183
--- src/sys/kern/kern_proc.c:1.182	Sun Feb 19 21:06:52 2012
+++ src/sys/kern/kern_proc.c	Fri Apr 13 15:32:15 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_proc.c,v 1.182 2012/02/19 21:06:52 rmind Exp $	*/
+/*	$NetBSD: kern_proc.c,v 1.183 2012/04/13 15:32:15 yamt Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_proc.c,v 1.182 2012/02/19 21:06:52 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_proc.c,v 1.183 2012/04/13 15:32:15 yamt Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_kstack.h"
@@ -741,6 +741,11 @@ proc_alloc(void)
 	return p;
 }
 
+/*
+ * proc_alloc_pid: allocate PID and record the given proc 'p' so that
+ * proc_find_raw() can find it by the PID.
+ */
+
 pid_t
 proc_alloc_pid(struct proc *p)
 {

Reply via email to