| 23 | static const size_t PSARGS_SIZE = 80; |
| 24 | |
| 25 | struct CorePsInfo |
| 26 | { |
| 27 | char state; |
| 28 | char sname; |
| 29 | char zomb; |
| 30 | char nice; |
| 31 | ulong flag; |
| 32 | int uid; |
| 33 | int gid; |
| 34 | pid_t pid; |
| 35 | pid_t ppid; |
| 36 | pid_t pgrp; |
| 37 | pid_t sid; |
| 38 | char fname[FNAME_SIZE]; |
| 39 | char psargs[PSARGS_SIZE]; |
| 40 | }; |
| 41 | |
| 42 | class CoreAnalyzerError : public std::exception |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected