Module Name:    src
Committed By:   skrll
Date:           Thu Feb 25 07:14:48 UTC 2010

Modified Files:
        src/sys/arch/alpha/alpha: locore.s syscall.c

Log Message:
s/cpu_fork/cpu_lwp_fork/ in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.118 -r1.119 src/sys/arch/alpha/alpha/locore.s
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/alpha/alpha/syscall.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/arch/alpha/alpha/locore.s
diff -u src/sys/arch/alpha/alpha/locore.s:1.118 src/sys/arch/alpha/alpha/locore.s:1.119
--- src/sys/arch/alpha/alpha/locore.s:1.118	Thu Dec 10 05:10:00 2009
+++ src/sys/arch/alpha/alpha/locore.s	Thu Feb 25 07:14:48 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.s,v 1.118 2009/12/10 05:10:00 rmind Exp $ */
+/* $NetBSD: locore.s,v 1.119 2010/02/25 07:14:48 skrll Exp $ */
 
 /*-
  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
 
 #include <machine/asm.h>
 
-__KERNEL_RCSID(0, "$NetBSD: locore.s,v 1.118 2009/12/10 05:10:00 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: locore.s,v 1.119 2010/02/25 07:14:48 skrll Exp $");
 
 #include "assym.h"
 
@@ -730,7 +730,7 @@
 /*
  * lwp_trampoline()
  *
- * Arrange for a function to be invoked neatly, after a cpu_fork().
+ * Arrange for a function to be invoked neatly, after a cpu_lwp_fork().
  *
  * Invokes the function specified by the s0 register with the return
  * address specified by the s1 register and with one argument specified

Index: src/sys/arch/alpha/alpha/syscall.c
diff -u src/sys/arch/alpha/alpha/syscall.c:1.35 src/sys/arch/alpha/alpha/syscall.c:1.36
--- src/sys/arch/alpha/alpha/syscall.c:1.35	Sat Nov 21 05:35:41 2009
+++ src/sys/arch/alpha/alpha/syscall.c	Thu Feb 25 07:14:48 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: syscall.c,v 1.35 2009/11/21 05:35:41 rmind Exp $ */
+/* $NetBSD: syscall.c,v 1.36 2010/02/25 07:14:48 skrll Exp $ */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -89,7 +89,7 @@
 
 #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: syscall.c,v 1.35 2009/11/21 05:35:41 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscall.c,v 1.36 2010/02/25 07:14:48 skrll Exp $");
 
 #include "opt_sa.h"
 
@@ -338,7 +338,7 @@
 	struct lwp *l = arg;
 
 	/*
-	 * Return values in the frame set by cpu_fork().
+	 * Return values in the frame set by cpu_lwp_fork().
 	 */
 
 	userret(l);

Reply via email to