[ CnUnix ] in KIDS 글 쓴 이(By): Alpheus (전 형 조) 날 짜 (Date): 1995년04월04일(화) 18시53분56초 KST 제 목(Title): Re: Got signal 11 "man signal"을 해보면 다음과 같은 부분이 있읍니다. (아래는 Solaris 2.3의 경우이고, 보통 /usr/include/signal.h에 보면 선언이 되어 있을 겁니다. 그리고, 웬만한 unix 시스템의 경우에는 비슷한 것으로 알고 있읍니다.) Name Value Default Event SIGHUP 1 Exit Hangup (see termio(7)) SIGINT 2 Exit Interrupt (see termio(7)) SIGQUIT 3 Core Quit (see termio(7)) SIGILL 4 Core Illegal Instruction SIGTRAP 5 Core Trace/Breakpoint Trap SIGABRT 6 Core Abort SIGEMT 7 Core Emulation Trap SIGFPE 8 Core Arithmetic Exception SIGKILL 9 Exit Killed SIGBUS 10 Core Bus Error SIGSEGV 11 Core Segmentation Fault SIGSYS 12 Core Bad System Call SIGPIPE 13 Exit Broken Pipe SIGALRM 14 Exit Alarm Clock SIGTERM 15 Exit Terminated SIGUSR1 16 Exit User Signal 1 SIGUSR2 17 Exit User Signal 2 SIGCHLD 18 Ignore Child Status Changed SIGPWR 19 Ignore Power Fail/Restart SIGWINCH 20 Ignore Window Size Change SIGURG 21 Ignore Urgent Socket Condition SIGPOLL 22 Exit Pollable Event (see streamio(7)) SIGSTOP 23 Stop Stopped (signal) SIGTSTP 24 Stop Stopped (user) (see termio(7)) SIGCONT 25 Ignore Continued SIGTTIN 26 Stop Stopped (tty input) (see termio(7)) SIGTTOU 27 Stop Stopped (tty output) (see termio(7)) SIGVTALRM 28 Exit Virtual Timer Expired SIGPROF 29 Exit Profiling Timer Expired SIGXCPU 30 Core CPU time limit exceeded (see getrlimit(2)) SIGXFSZ 31 Core File size limit exceeded (see getrlimit(2)) SIGWAITING 32 Ignore Process's LWPs are blocked SIGLWP 33 Ignore Special signal used by thread library SIGRTMIN * Exit First real time signal (SIGRTMIN+1) * Exit Second real time signal ... (SIGRTMAX-1) * Exit Second-to-last real time signal SIGRTMAX * Exit Last real time signal (The symbols SIGRTMIN through SIGRTMAX are evaluated dynamically in order to permit future configurability) 위의 내용이 별 도움은 안 되리라 생각합니다만, man을 뒤져 보시고 프로그램을 자세히 살펴보신다면 에러의 원인을 찾을 수 있지 않을런지... 그럼 이만.. |