Man-pages on mkdep, cdprobe, loadramdisk and newroot; thanks to Antoine Leca

This commit is contained in:
Erik van der Kouwe
2010-02-02 15:10:00 +00:00
parent 2db33d5c8c
commit c107dbe1d0
14 changed files with 226 additions and 28 deletions
+4 -4
View File
@@ -279,11 +279,11 @@ void test5g()
int n;
subtest = 7;
Signal(SIGUSR1, func11);
Signal(SIGUSR1, SIG_IGN);
Signal(11, func11);
Signal(11, SIG_IGN);
n = getpid();
if (kill(n, SIGUSR1) != 0) e(1);
Signal(SIGUSR1, SIG_DFL);
if (kill(n, 11) != 0) e(1);
Signal(11, SIG_DFL);
}
void funcalrm(s)