mirror of
https://github.com/decompals/wibo.git
synced 2025-08-08 13:09:05 +00:00
* Implement enough process handling logic to make psyq4.0 happy * revert gitignore * data type update * PR review * DEBUG_LOG mistake --------- Co-authored-by: ConorBobbleHat <c.github@firstpartners.net>
12 lines
235 B
C++
12 lines
235 B
C++
#include <cstdint>
|
|
#include <sched.h>
|
|
|
|
namespace processes {
|
|
struct Process {
|
|
pid_t pid;
|
|
uint32_t exitCode;
|
|
};
|
|
|
|
void *allocProcessHandle(pid_t pid);
|
|
Process* processFromHandle(void* hHandle, bool pop);
|
|
} |