diff options
| author | Stefan Boberg <[email protected]> | 2021-08-06 15:10:01 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-08-06 15:10:01 +0200 |
| commit | e45ee6a2133e3f4c2cb5b3c53341de5e1ce1d20f (patch) | |
| tree | 376dbf5641ee50477aa8ff75e628a13eb8be12c8 /zencore/include | |
| parent | Added GetRunningExecutablePath() (diff) | |
| download | zen-e45ee6a2133e3f4c2cb5b3c53341de5e1ce1d20f.tar.xz zen-e45ee6a2133e3f4c2cb5b3c53341de5e1ce1d20f.zip | |
zen::Process -> zen::ProcessHandle
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/thread.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/zencore/include/zencore/thread.h b/zencore/include/zencore/thread.h index d27d0f189..bf27d75ae 100644 --- a/zencore/include/zencore/thread.h +++ b/zencore/include/zencore/thread.h @@ -119,15 +119,15 @@ private: /** Basic process abstraction */ -class Process +class ProcessHandle { public: - ZENCORE_API Process(); + ZENCORE_API ProcessHandle(); - Process(const Process&) = delete; - Process& operator=(const Process&) = delete; + ProcessHandle(const ProcessHandle&) = delete; + ProcessHandle& operator=(const ProcessHandle&) = delete; - ZENCORE_API ~Process(); + ZENCORE_API ~ProcessHandle(); ZENCORE_API void Initialize(int Pid); ZENCORE_API void Initialize(void* ProcessHandle); /// Initialize with an existing handle - takes ownership of the handle |