Michaël Lemaire
4e70d8ca8c
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@233 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
58 lines
915 B
C
58 lines
915 B
C
#ifndef _PAYSAGES_SYSTEM_H_
|
|
#define _PAYSAGES_SYSTEM_H_
|
|
|
|
#include <glib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef GThread Thread;
|
|
typedef void*(*ThreadFunction)(void* data);
|
|
|
|
void systemInit();
|
|
int systemGetCoreCount();
|
|
|
|
static inline Thread* threadCreate(ThreadFunction function, void* data)
|
|
{
|
|
GError* error;
|
|
return g_thread_create((GThreadFunc)function, data, 1, &error);
|
|
}
|
|
|
|
static inline void* threadJoin(Thread* thread)
|
|
{
|
|
return g_thread_join(thread);
|
|
}
|
|
|
|
typedef GMutex Mutex;
|
|
|
|
static inline Mutex* mutexCreate()
|
|
{
|
|
return g_mutex_new();
|
|
}
|
|
|
|
static inline void mutexDestroy(Mutex* mutex)
|
|
{
|
|
g_mutex_free(mutex);
|
|
}
|
|
|
|
static inline void mutexAcquire(Mutex* mutex)
|
|
{
|
|
g_mutex_lock(mutex);
|
|
}
|
|
|
|
static inline void mutexRelease(Mutex* mutex)
|
|
{
|
|
g_mutex_unlock(mutex);
|
|
}
|
|
|
|
static inline void timeSleepMs(unsigned long ms)
|
|
{
|
|
g_usleep(ms * 1000);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|