mirror of
https://github.com/decompals/wibo.git
synced 2025-12-16 16:37:12 +00:00
Implement enough process handling logic to make psyq4.0 happy (#46)
* 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>
This commit is contained in:
12
processes.h
Normal file
12
processes.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user