]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/types.h
Throw out anything polling related - they will go to libmspio eventually
[libs/core.git] / source / core / types.h
index 729668978d1323aa7d9924eb3f04a3d30b2adb70..885c5231b81fde3e363a93af16f3b67940fcf8f1 100644 (file)
@@ -1,5 +1,5 @@
 /*
-This file is part of libmspframework
+This file is part of libmspcore
 Copyright © 2006  Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
@@ -17,9 +17,11 @@ namespace Msp {
 #ifdef WIN32
 typedef HANDLE ThreadHandle;
 typedef HANDLE MutexHandle;
+typedef HANDLE SemaphoreHandle;
 #else
 typedef pthread_t ThreadHandle;
 typedef pthread_mutex_t MutexHandle;
+typedef pthread_cond_t SemaphoreHandle;
 #endif
 
 } // namespace Msp