Jon Smirl
2004-Feb-21 17:45 UTC
[klibc] sighandler_t signal(int signum, sighandler_t handler);
sighandler_t signal(int signum, sighandler_t handler); it's in the headers ok but the function seems to be missing. I seem to recall this working in older versions. linking... /home/mesa/boot/v86bios/main.c:411: undefined reference to `signal' main.o(.text+0x613): /home/mesa/boot/v86bios/main.c:412: undefined reference to `signal' ====Jon Smirl jonsmirl@yahoo.com __________________________________ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools
H. Peter Anvin
2004-Feb-21 23:06 UTC
[klibc] sighandler_t signal(int signum, sighandler_t handler);
Jon Smirl wrote:> sighandler_t signal(int signum, sighandler_t handler); > > it's in the headers ok but the function seems to be missing. I seem to recall > this working in older versions. > > linking... > /home/mesa/boot/v86bios/main.c:411: undefined reference to `signal' > main.o(.text+0x613): /home/mesa/boot/v86bios/main.c:412: undefined reference to > `signal' >signal() has been removed because people can't agree on if it should be bsd_signal() or sysv_signal(). It's in the CAVEATS file. -hpa