aboutsummaryrefslogtreecommitdiff
path: root/zencore/include
diff options
context:
space:
mode:
Diffstat (limited to 'zencore/include')
-rw-r--r--zencore/include/zencore/thread.h10
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