Who's responsible for include/asm*/signal.h?
If we want POSIX signals handling, perhaps we could
at least define SIGRTMAX based on a constant
that we know (perhaps SIGRTMIN+31)?
jd:dcd$ cat -n rtmax.c
1 #include <signal.h>
2
3 #include <stdio.h>
4 int main() {
5 printf("SIGRTMIN=%d\n", SIGRTMIN);
6 printf("SIGRTMAX=%d\n", SIGRTMAX);
7 }
jd:dcd$ gcc -O2 rtmax.c
rtmax.c: In function `main':
rtmax.c:6: `_NSIG' undeclared (first use this function)
rtmax.c:6: (Each undeclared identifier is reported only once
rtmax.c:6: for each function it appears in.)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu