aboutsummaryrefslogtreecommitdiff
path: root/data/mods/default/textures/default_stick.png
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2012-02-02 14:35:18 +0200
committerPerttu Ahola <celeron55@gmail.com>2012-02-02 14:35:18 +0200
commit365f7a5bfe0cf1838b0c6f3936c4437f3dd9f1f7 (patch)
tree89d2c75eb94b975f36933820a6f492b822e1c4f0 /data/mods/default/textures/default_stick.png
parent796009ef2152262ba9b2541256a880ff555449fd (diff)
parentb85b4ede822b9d2d5f82c034e520341e9d86b08a (diff)
downloadminetest-365f7a5bfe0cf1838b0c6f3936c4437f3dd9f1f7.tar.gz
minetest-365f7a5bfe0cf1838b0c6f3936c4437f3dd9f1f7.tar.bz2
minetest-365f7a5bfe0cf1838b0c6f3936c4437f3dd9f1f7.zip
Merge remote-tracking branch 'kahrl/hidehud'
Diffstat (limited to 'data/mods/default/textures/default_stick.png')
0 files changed, 0 insertions, 0 deletions
ine ERR_JTHREAD_CANTSTARTTHREAD -2 #define ERR_JTHREAD_THREADFUNCNOTSET -3 #define ERR_JTHREAD_NOTRUNNING -4 #define ERR_JTHREAD_ALREADYRUNNING -5 class JThread { public: JThread(); virtual ~JThread(); int Start(); int Kill(); virtual void *Thread() = 0; bool IsRunning(); void *GetReturnValue(); protected: void ThreadStarted(); private: #if (defined(WIN32) || defined(_WIN32_WCE)) #ifdef _WIN32_WCE DWORD threadid; static DWORD WINAPI TheThread(void *param); #else static UINT __stdcall TheThread(void *param); UINT threadid; #endif // _WIN32_WCE HANDLE threadhandle; #else // pthread type threads static void *TheThread(void *param); pthread_t threadid; #endif // WIN32 void *retval; bool running; JMutex runningmutex;