Add support for IPv6
[oweals/minetest.git] / src / jthread / jmutex.h
index e528aeb4ab95216407dfcc4284a39a1e1edc6032..8efdc7bc58cff3d103a7b0df66fe53538e95da70 100644 (file)
@@ -31,7 +31,7 @@
 
 #if (defined(WIN32) || defined(_WIN32_WCE))
        #ifndef _WIN32_WINNT
-               #define _WIN32_WINNT 0x0500
+               #define _WIN32_WINNT 0x0501
        #endif
        #ifndef _WIN32_WCE
                #include <process.h>
@@ -57,6 +57,7 @@ public:
        int Lock();
        int Unlock();
        bool IsInitialized()                                            { return initialized; }
+
 private:
 #if (defined(WIN32) || defined(_WIN32_WCE))
 #ifdef JMUTEX_CRITICALSECTION
@@ -66,6 +67,14 @@ private:
 #endif // JMUTEX_CRITICALSECTION
 #else // pthread mutex
        pthread_mutex_t mutex;
+
+       bool IsLocked() {
+               if (pthread_mutex_trylock(&mutex)) {
+                       pthread_mutex_unlock(&mutex);
+                       return true;
+               }
+               return false;
+       }
 #endif // WIN32
        bool initialized;
 };