Changeset 15306
- Timestamp:
- 04/17/12 00:40:26 (11 years ago)
- Location:
- titan/titan
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/i386port.h
r15296 r15306 164 164 switch(sig) 165 165 { 166 case SIGPIPE: 167 { 168 err("got signal sigpipe but ignore it"); 169 break; 170 } 166 171 case SIGUSR1: 167 172 { -
titan/titan/mipselport.h
r15296 r15306 659 659 void sighandler(int sig, struct sigcontext ctx) 660 660 { 661 /*662 661 debug(1000, "in"); 663 662 switch(sig) 664 663 { 664 case SIGPIPE: 665 { 666 err("got signal sigpipe but ignore it"); 667 break; 668 } 665 669 case SIGUSR1: 666 670 { … … 674 678 case SIGABRT: 675 679 { 680 /* 676 681 #ifdef SIMULATE 677 682 //intel … … 691 696 err("got signal %d, programm counter reg: 0x%lx, procedure reg: 0x%lx", sig, ctx.sc_pc, ctx.sc_pr); 692 697 #endif 698 */ 693 699 if(getconfigint("saverun", NULL) == 1 && status.longjumpbuf != NULL) 694 700 siglongjmp(status.longjumpbuf, 1); … … 699 705 } 700 706 debug(1000, "out"); 701 */ 702 } 703 704 #endif 707 } 708 709 #endif -
titan/titan/sh4port.h
r15296 r15306 545 545 switch(sig) 546 546 { 547 case SIGPIPE: 548 { 549 err("got signal sigpipe but ignore it"); 550 break; 551 } 547 552 case SIGUSR1: 548 553 { -
titan/titan/titan.c
r15281 r15306 388 388 sigaction(SIGBUS, &sa, NULL); 389 389 sigaction(SIGABRT, &sa, NULL); 390 sigaction(SIGPIPE, &sa, NULL); 390 391 391 392 status.rguidfd = -1;
Note: See TracChangeset
for help on using the changeset viewer.