Message135438
| Author |
vstinner |
| Recipients |
benjamin.peterson, exarkun, gregory.p.smith, loewis, marcin.bachry, neologix, pitrou, python-dev, schmichael, spiv, tseaver, vstinner |
| Date |
2011年05月07日.10:05:23 |
| SpamBayes Score |
2.2309065e-08 |
| Marked as misclassified |
No |
| Message-id |
<1304762724.78.0.373070622868.issue8407@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
About signalfd(): this patch doesn't provide any information or tool to decode data written to the file descriptor. We should expose the signalfd_siginfo structure or you cannot handle more than one signal (how do you know which signal numbers were raised?). Example with ctypes:
class signalfd_siginfo(Structure):
_fields_ = (
('ssi_signo', c_uint32), # Signal number
('ssi_errno', c_int32), # Error number (unused)
('ssi_code', c_int32), # Signal code
('ssi_pid', c_uint32), # PID of sender
('ssi_uid', c_uint32), # Real UID of sender
('ssi_fd', c_int32), # File descriptor (SIGIO)
('ssi_tid', c_uint32), # Kernel timer ID (POSIX timers)
('ssi_band', c_uint32), # Band event (SIGIO)
('ssi_overrun', c_uint32), # POSIX timer overrun count
('ssi_trapno', c_uint32), # Trap number that caused signal
('ssi_status', c_int32), # Exit status or signal (SIGCHLD)
('ssi_int', c_int32), # Integer sent by sigqueue(2)
('ssi_ptr', c_uint64), # Pointer sent by sigqueue(2)
('ssi_utime', c_uint64), # User CPU time consumed (SIGCHLD)
('ssi_stime', c_uint64), # System CPU time consumed (SIGCHLD)
('ssi_addr', c_uint64), # Address that generated signal
# (for hardware-generated signals)
('_padding', c_char * 46), # Pad size to 128 bytes (allow for
# additional fields in the future)
) |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2011年05月07日 10:05:24 | vstinner | set | recipients:
+ vstinner, loewis, gregory.p.smith, spiv, exarkun, tseaver, pitrou, benjamin.peterson, marcin.bachry, schmichael, neologix, python-dev |
| 2011年05月07日 10:05:24 | vstinner | set | messageid: <1304762724.78.0.373070622868.issue8407@psf.upfronthosting.co.za> |
| 2011年05月07日 10:05:23 | vstinner | link | issue8407 messages |
| 2011年05月07日 10:05:23 | vstinner | create |
|