{ $Id$ This file is part of the Free Pascal run time library. Copyright (c) 1999-2000 by Jonas Maebe, member of the Free Pascal development team. See the file COPYING.FPC, included in this distribution, for details about the copyright. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. **********************************************************************} {$packrecords C} Const // OS specific parameters for general sigset behaviour SIG_MAXSIG = 1024; // highest signal version wordsinsigset = 32; // words in sigset_t ln2bitsinword = 5; { 32bit : ln(32)/ln(2)=5 } ln2bitmask = 2 shl ln2bitsinword - 1; {******************** Signal ********************} Const { For sending a signal } SA_NOCLDSTOP = 1; SA_SHIRQ = $04000000; SA_STACK = $08000000; SA_RESTART = $10000000; SA_INTERRUPT = $20000000; SA_NOMASK = $40000000; SA_ONESHOT = $80000000; SIG_BLOCK = 0; SIG_UNBLOCK = 1; SIG_SETMASK = 2; SIG_DFL = 0 ; SIG_IGN = 1 ; SIG_ERR = -1 ; SIGHUP = 1; SIGINT = 2; SIGQUIT = 3; SIGILL = 4; SIGTRAP = 5; SIGABRT = 6; SIGIOT = 6; SIGBUS = 7; SIGFPE = 8; SIGKILL = 9; SIGUSR1 = 10; SIGSEGV = 11; SIGUSR2 = 12; SIGPIPE = 13; SIGALRM = 14; SIGTerm = 15; SIGSTKFLT = 16; SIGCHLD = 17; SIGCONT = 18; SIGSTOP = 19; SIGTSTP = 20; SIGTTIN = 21; SIGTTOU = 22; SIGURG = 23; SIGXCPU = 24; SIGXFSZ = 25; SIGVTALRM = 26; SIGPROF = 27; SIGWINCH = 28; SIGIO = 29; SIGPOLL = SIGIO; SIGPWR = 30; SIGUNUSED = 31; const SI_PAD_SIZE = ((128 div sizeof(longint)) - 3); type tfpreg = record significand: array[0..3] of word; exponent: word; end; pfpstate = ^tfpstate; tfpstate = record cw, sw, tag, ipoff, cssel, dataoff, datasel: cardinal; st: array[0..7] of tfpreg; status: cardinal; end; {$ifdef i386} PSigContextRec = ^SigContextRec; SigContextRec = record gs, __gsh: word; fs, __fsh: word; es, __esh: word; ds, __dsh: word; edi: cardinal; esi: cardinal; ebp: cardinal; esp: cardinal; ebx: cardinal; edx: cardinal; ecx: cardinal; eax: cardinal; trapno: cardinal; err: cardinal; eip: cardinal; cs, __csh: word; eflags: cardinal; esp_at_signal: cardinal; ss, __ssh: word; fpstate: pfpstate; oldmask: cardinal; cr2: cardinal; end; {$endif i386} {$Ifdef m68k} PSigContextRec = ^SigContextRec; SigContextRec = record { dummy for now PM } end; {$endif m68k} {$ifdef powerpc} PSigContextRec = ^SigContextRec; SigContextRec = record { dummy for now PM } end; {$endif powerpc} {$ifdef SPARC} PSigContextRec = ^SigContextRec; SigContextRec = record { dummy for now PM } end; {$endif SPARC} (* PSigInfoRec = ^SigInfoRec; SigInfoRec = record si_signo: longint; si_errno: longint; si_code: longint; case longint of 0: (pad: array[SI_PAD_SIZE] of longint); 1: { kill } ( kill: record pid: longint; { sender's pid } uid : longint; { sender's uid } end ); 2: { POSIX.1b timers } ( timer : record timer1 : cardinal; timer2 : cardinal; end ); 3: { POSIX.1b signals } ( rt : record pid : longint; { sender's pid } uid : longint; { sender's uid } sigval : longint; end ); 4: { SIGCHLD } ( sigchld : record pid : longint; { which child } uid : longint; { sender's uid } status : longint; { exit code } utime : timeval; stime : timeval; end ); 5: { SIGILL, SIGFPE, SIGSEGV, SIGBUS } ( sigfault : record addr : pointer;{ faulting insn/memory ref. } end ); 6: ( sigpoll : record band : longint; { POLL_IN, POLL_OUT, POLL_MSG } fd : longint; end ); end; *) SignalHandler = Procedure(Sig : Longint);cdecl; PSignalHandler = ^SignalHandler; SignalRestorer = Procedure;cdecl; PSignalRestorer = ^SignalRestorer; TSigAction = procedure(Sig: Longint; SigContext: SigContextRec);cdecl; SigSet = array[0..wordsinsigset-1] of Longint; sigset_t= SigSet; PSigSet = ^SigSet; psigset_t=psigset; TSigSet = SigSet; SigActionRec = packed record // this is temporary for the migration {$ifdef posixworkaround} sa_handler : signalhandler; {$else} Handler : record case byte of 0: (Sh: SignalHandler); 1: (Sa: TSigAction); end; {$endif} Sa_Mask : SigSet; Sa_Flags : Longint; Sa_restorer : SignalRestorer; { Obsolete - Don't use } end; TSigActionRec = SigActionRec; PSigActionRec = ^SigActionRec; { $Log$ Revision 1.9 2002-12-24 21:30:20 mazen - some writeln(s) removed in compiler + many files added to RTL * some errors fixed in RTL Revision 1.8 2002/12/18 16:43:26 marco * new unix rtl, linux part..... Revision 1.7 2002/11/12 14:51:44 marco * signal. Revision 1.6 2002/09/07 16:01:19 peter * old logs removed and tabs fixed Revision 1.5 2002/07/28 20:43:48 florian * several fixes for linux/powerpc * several fixes to MT }