Skip to content
Snippets Groups Projects
Commit 6dbd1a2f authored by pw's avatar pw
Browse files

Remove a cast that was inserted for Alpha/Linux but generated a compiler

error on FreeBSD/x86. More investigation needed on Alpha/Linux side.
parent 25b808fb
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/interrupt.c,v 1.17 1999/02/20 15:54:43 pw Exp $ */ /* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/interrupt.c,v 1.18 1999/02/20 16:14:29 pw Exp $ */
/* Interrupt handing magic. */ /* Interrupt handing magic. */
...@@ -535,7 +535,7 @@ void interrupt_install_low_level_handler ...@@ -535,7 +535,7 @@ void interrupt_install_low_level_handler
sigvec(signal,&sv,NULL); sigvec(signal,&sv,NULL);
#endif #endif
#endif #endif
interrupt_low_level_handlers[signal]=((__sighandler_t) handler==SIG_DFL ? 0 : handler); interrupt_low_level_handlers[signal]= (handler==SIG_DFL)? 0 : handler;
} }
unsigned long install_handler(int signal, unsigned long install_handler(int signal,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment