| 10 | namespace pystack { |
| 11 | |
| 12 | struct CoreCrashInfo |
| 13 | { |
| 14 | int si_signo; |
| 15 | int si_errno; |
| 16 | int si_code; |
| 17 | int sender_pid; |
| 18 | int sender_uid; |
| 19 | uintptr_t failed_addr; |
| 20 | }; |
| 21 | |
| 22 | static const size_t FNAME_SIZE = 16; |
| 23 | static const size_t PSARGS_SIZE = 80; |
nothing calls this directly
no outgoing calls
no test coverage detected