Path: utzoo!utgpu!news-server.csri.toronto.edu!neat.cs.toronto.edu!ken Newsgroups: comp.sys.sgi From: ken@cs.toronto.edu (Ken Lalonde) Subject: Can't catch SIGCONT under 3.3.1? Message-ID: <90Dec14.002220est.6705@neat.cs.toronto.edu> Organization: Department of Computer Science, University of Toronto Date: 14 Dec 90 05:22:36 GMT Lines: 21 When following program is compiled with "cc test.c" under IRIX 3.3.1, it prints "Caught SIGCONT", as expected: #include f() { printf("Caught SIGCONT\n"); } main() { signal(SIGCONT, f); kill(0, SIGCONT); } When compiled "cc -D_BSD_SIGNALS", it prints nothing. The signal handler for SIGCONT isn't being called. Bug? -- Ken Lalonde, University of Toronto