Changeset 11498 for branches/working-0711/ccl/lisp-kernel/pmcl-kernel.c
- Timestamp:
- Dec 9, 2008, 4:22:09 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0711/ccl/lisp-kernel/pmcl-kernel.c
r11482 r11498 733 733 { 734 734 if (signum == SIGINT) { 735 lisp_global(INTFLAG) = ( 1<< fixnumshift);735 lisp_global(INTFLAG) = (((signum<<8) + 1) << fixnumshift); 736 736 } 737 737 else if (signum == SIGTERM) { 738 lisp_global(INTFLAG) = (2 << fixnumshift); 738 lisp_global(INTFLAG) = (((signum<<8) + 2) << fixnumshift); 739 } 740 else if (signum == SIGQUIT) { 741 lisp_global(INTFLAG) = (((signum<<8) + 2) << fixnumshift); 739 742 } 740 743 #ifdef DARWIN
Note: See TracChangeset
for help on using the changeset viewer.