[Overview][Constants][Types][Procedures and functions] | Reference for unit 'BaseUnix' (#rtl) |
Record describing the signal when a signal occurs.
Source position: signal.inc line 145
type tsiginfo = record |
||
si_signo: LongInt; |
|
Signal number |
si_errno: LongInt; |
|
Error code |
si_code: LongInt; |
|
Extra code (?) |
_sifields: record |
|
Extra signal information fields |
case LongInt of |
||
0: ( |
||
_pad: array [0..(SI_PAD_SIZE)-1] of LongInt; |
||
); |
||
1: ( |
||
_kill: record |
||
_pid: pid_t; |
||
_uid: uid_t; |
||
end; |
||
); |
||
2: ( |
||
_timer: record |
||
_timer1: dword; |
||
_timer2: dword; |
||
end; |
||
); |
||
3: ( |
||
_rt: record |
||
_pid: pid_t; |
||
_uid: uid_t; |
||
_sigval: pointer; |
||
end; |
||
); |
||
4: ( |
||
_sigchld: record |
||
_pid: pid_t; |
||
_uid: uid_t; |
||
_status: LongInt; |
||
_utime: clock_t; |
||
_stime: clock_t; |
||
end; |
||
); |
||
5: ( |
||
_sigfault: record |
||
_addr: pointer; |
||
end; |
||
); |
||
6: ( |
||
_sigpoll: record |
||
_band: LongInt; |
||
_fd: LongInt; |
||
end; |
||
); |
||
end; |
||
end; |
This type describes the signal that occurred.
No notes exist for this page yet.