diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-18 18:43:20 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-18 18:43:20 +0100 |
commit | d2b229d227268db7ca9264f2a914a7caf089401c (patch) | |
tree | ee64699b379371ce6401a9b61f8667c07be98fc2 /source/cIsThread.h | |
parent | Webserver: fixed a compiler warning (diff) | |
download | cuberite-d2b229d227268db7ca9264f2a914a7caf089401c.tar cuberite-d2b229d227268db7ca9264f2a914a7caf089401c.tar.gz cuberite-d2b229d227268db7ca9264f2a914a7caf089401c.tar.bz2 cuberite-d2b229d227268db7ca9264f2a914a7caf089401c.tar.lz cuberite-d2b229d227268db7ca9264f2a914a7caf089401c.tar.xz cuberite-d2b229d227268db7ca9264f2a914a7caf089401c.tar.zst cuberite-d2b229d227268db7ca9264f2a914a7caf089401c.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cIsThread.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/cIsThread.h b/source/cIsThread.h index fda789d3a..55bb62a11 100644 --- a/source/cIsThread.h +++ b/source/cIsThread.h @@ -37,6 +37,8 @@ public: bool Start(void); // Starts the thread
bool Wait(void); // Waits for the thread to finish
+ static unsigned long GetCurrentID(void); // Returns the OS-dependent thread ID for the caller's thread
+
private:
AString mThreadName;
|