mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-23 20:51:28 +02:00
* signal.
This commit is contained in:
parent
bf1a224db4
commit
70d3e266ef
@ -185,12 +185,16 @@ type
|
|||||||
SigSet = Longint;
|
SigSet = Longint;
|
||||||
PSigSet = ^SigSet;
|
PSigSet = ^SigSet;
|
||||||
|
|
||||||
SigActionRec = packed record
|
SigActionRec = packed record // this is temporary for the migration
|
||||||
|
{$ifdef posixworkaround}
|
||||||
|
sa_handler : signalhandler;
|
||||||
|
{$else}
|
||||||
Handler : record
|
Handler : record
|
||||||
case byte of
|
case byte of
|
||||||
0: (Sh: SignalHandler);
|
0: (Sh: SignalHandler);
|
||||||
1: (Sa: TSigAction);
|
1: (Sa: TSigAction);
|
||||||
end;
|
end;
|
||||||
|
{$endif}
|
||||||
Sa_Mask : SigSet;
|
Sa_Mask : SigSet;
|
||||||
Sa_Flags : Longint;
|
Sa_Flags : Longint;
|
||||||
Sa_restorer : SignalRestorer; { Obsolete - Don't use }
|
Sa_restorer : SignalRestorer; { Obsolete - Don't use }
|
||||||
@ -199,7 +203,10 @@ type
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.6 2002-09-07 16:01:19 peter
|
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
|
* old logs removed and tabs fixed
|
||||||
|
|
||||||
Revision 1.5 2002/07/28 20:43:48 florian
|
Revision 1.5 2002/07/28 20:43:48 florian
|
||||||
|
Loading…
Reference in New Issue
Block a user