diff options
| author | Liam Mitchell <[email protected]> | 2025-02-27 02:16:10 +0000 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2025-02-27 02:16:10 +0000 |
| commit | c49b0a053c5e28de1afa83600ebffd383766e38a (patch) | |
| tree | 3b9e7880e09ff816edd1fc9f996015ed9e6ee522 /src/zencore/include | |
| parent | Linux compilation fixes (diff) | |
| download | zen-c49b0a053c5e28de1afa83600ebffd383766e38a.tar.xz zen-c49b0a053c5e28de1afa83600ebffd383766e38a.zip | |
Implementation of service commands for Linux.
Diffstat (limited to 'src/zencore/include')
| -rw-r--r-- | src/zencore/include/zencore/process.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/zencore/include/zencore/process.h b/src/zencore/include/zencore/process.h index 42b997c39..36c2a2481 100644 --- a/src/zencore/include/zencore/process.h +++ b/src/zencore/include/zencore/process.h @@ -101,6 +101,10 @@ int GetProcessId(CreateProcResult ProcId); std::filesystem::path GetProcessExecutablePath(int Pid, std::error_code& OutEc); std::error_code FindProcess(const std::filesystem::path& ExecutableImage, ProcessHandle& OutHandle); +#if ZEN_PLATFORM_LINUX +void IgnoreChildSignals(); +#endif + void process_forcelink(); // internal } // namespace zen |