Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Aug 2007 02:13:57 GMT
From:      Jesper Brix Rosenkilde <jbr@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 125374 for review
Message-ID:  <200708200213.l7K2DvxD036456@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=125374

Change 125374 by jbr@jbr_bob on 2007/08/20 02:13:42

	cleanup

Affected files ...

.. //depot/projects/soc2007/jbr-syscall/src/sys/kern/kern_fork.c#3 edit
.. //depot/projects/soc2007/jbr-syscall/src/sys/sys/exec.h#5 edit

Differences ...

==== //depot/projects/soc2007/jbr-syscall/src/sys/kern/kern_fork.c#3 (text+ko) ====

@@ -229,7 +229,6 @@
 			}
 			PROC_UNLOCK(p1);
 		}
-		
 		vm_forkproc(td, NULL, NULL, flags);
 
 		/*
@@ -417,7 +416,6 @@
 	td2 = FIRST_THREAD_IN_PROC(newproc);
 	p2->p_state = PRS_NEW;		/* protect against others */
 	p2->p_pid = trypid;
-
 	/*
 	 * Allow the scheduler to initialize the child.
 	 */
@@ -748,7 +746,6 @@
 	 * Return child proc pointer to parent.
 	 */
 	*procp = p2;
-
 	return (0);
 fail:
 	sx_sunlock(&proctree_lock);

==== //depot/projects/soc2007/jbr-syscall/src/sys/sys/exec.h#5 (text+ko) ====

@@ -73,9 +73,7 @@
 
 int exec_map_first_page(struct image_params *);        
 void exec_unmap_first_page(struct image_params *);       
-
 int exec_map_sysshm(struct image_params *);
-
 int exec_register(const struct execsw *);
 int exec_unregister(const struct execsw *);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200708200213.l7K2DvxD036456>