PERFORCE change 107882 for review
Roman Divacky
rdivacky at FreeBSD.org
Sat Oct 14 04:13:41 PDT 2006
http://perforce.freebsd.org/chv.cgi?CH=107882
Change 107882 by rdivacky at rdivacky_witten on 2006/10/14 11:12:57
RFLINUXTHPN is not used anymore. Remove that.
Affected files ...
.. //depot/projects/linuxolator/src/sys/kern/kern_fork.c#3 edit
.. //depot/projects/linuxolator/src/sys/sys/unistd.h#2 edit
Differences ...
==== //depot/projects/linuxolator/src/sys/kern/kern_fork.c#3 (text+ko) ====
@@ -527,10 +527,7 @@
sigacts_copy(newsigacts, p1->p_sigacts);
p2->p_sigacts = newsigacts;
}
- if (flags & RFLINUXTHPN)
- p2->p_sigparent = SIGUSR1;
- else
- p2->p_sigparent = SIGCHLD;
+ p2->p_sigparent = SIGCHLD;
p2->p_textvp = p1->p_textvp;
p2->p_fd = fd;
==== //depot/projects/linuxolator/src/sys/sys/unistd.h#2 (text+ko) ====
@@ -169,7 +169,7 @@
#define RFCFDG (1<<12) /* close all fds, zero fd table */
#define RFTHREAD (1<<13) /* enable kernel thread support */
#define RFSIGSHARE (1<<14) /* share signal handlers */
-#define RFLINUXTHPN (1<<16) /* do linux clone exit parent notification */
+#define RFUNUSED (1<<16) /* UNUSED */
#define RFSTOPPED (1<<17) /* leave child in a stopped state */
#define RFHIGHPID (1<<18) /* use a pid higher then 10 (idleproc) */
#define RFPPWAIT (1<<31) /* parent sleeps until child exits (vfork) */
More information about the p4-projects
mailing list