| 31 | bool getProcessInfo(int pid, ProcessInfo &info); |
| 32 | |
| 33 | class Architecture { |
| 34 | public: |
| 35 | static constexpr int ARCH_X86 = 3; |
| 36 | static constexpr int ARCH_X86_64 = 62; |
| 37 | static constexpr int ARCH_ARM = 40; |
| 38 | static constexpr int ARCH_AARCH64 = 183; |
| 39 | }; |
| 40 | |
| 41 | /** |
| 42 | * Get the kernel architecture of the current Linux system. |
nothing calls this directly
no outgoing calls
no test coverage detected