aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/osx.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-08-08 10:46:42 +0200
committerJoel Bodenmann <joel@unormal.org>2014-08-08 10:46:42 +0200
commite65b1db192c264093663bbae093754e619ac333f (patch)
tree29d2878e3cf7bac59235600765e0830361c82bb0 /src/gos/osx.h
parent56f55af6eacd8a9be42559669c9b39cabe37a83a (diff)
downloaduGFX-e65b1db192c264093663bbae093754e619ac333f.tar.gz
uGFX-e65b1db192c264093663bbae093754e619ac333f.tar.bz2
uGFX-e65b1db192c264093663bbae093754e619ac333f.zip
Adding prefix to port files to avoid file name conflicts on case insensitive systems
Diffstat (limited to 'src/gos/osx.h')
-rw-r--r--src/gos/osx.h88
1 files changed, 0 insertions, 88 deletions
diff --git a/src/gos/osx.h b/src/gos/osx.h
deleted file mode 100644
index 635a8934..00000000
--- a/src/gos/osx.h
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * This file is subject to the terms of the GFX License. If a copy of
- * the license was not distributed with this file, you can obtain one at:
- *
- * http://ugfx.org/license.html
- */
-
-#ifndef _GOS_OSX_H
-#define _GOS_OSX_H
-
-#if GFX_USE_OS_OSX
-
-#include <sys/types.h>
-#include <stdint.h>
-#include <pthread.h>
-
-/* Already defined int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, size_t */
-
-typedef int8_t bool_t;
-typedef unsigned long systemticks_t;
-typedef void * threadreturn_t;
-typedef unsigned long delaytime_t;
-typedef pthread_t gfxThreadHandle;
-typedef int threadpriority_t;
-typedef uint32_t semcount_t;
-typedef pthread_mutex_t gfxMutex;
-
-#define DECLARE_THREAD_FUNCTION(fnName, param) threadreturn_t fnName(void *param)
-#define DECLARE_THREAD_STACK(name, sz) uint8_t name[0];
-
-#define gfxExit() exit(0)
-#define gfxAlloc(sz) malloc(sz)
-#define gfxRealloc(p,osz,nsz) realloc(p, nsz)
-#define gfxFree(ptr) free(ptr)
-#define gfxMillisecondsToTicks(ms) (ms)
-#define gfxYield() sched_yield()
-#define gfxThreadMe() pthread_self()
-#define gfxThreadClose(th) (void)th
-#define gfxMutexInit(pmtx) pthread_mutex_init(pmtx, 0)
-#define gfxMutexDestroy(pmtx) pthread_mutex_destroy(pmtx)
-#define gfxMutexEnter(pmtx) pthread_mutex_lock(pmtx)
-#define gfxMutexExit(pmtx) pthread_mutex_unlock(pmtx)
-#define gfxSemWaitI(psem) gfxSemWait(psem, TIME_IMMEDIATE)
-#define gfxSemSignalI(psem) gfxSemSignal(psem)
-#define gfxSemCounterI(pSem) ((pSem)->cnt)
-
-#define TIME_IMMEDIATE 0
-#define TIME_INFINITE ((delaytime_t)-1)
-#define MAX_SEMAPHORE_COUNT ((semcount_t)-1)
-#define LOW_PRIORITY 10
-#define NORMAL_PRIORITY 0
-#define HIGH_PRIORITY -10
-
-typedef struct gfxSem {
- pthread_mutex_t mtx;
- pthread_cond_t cond;
- semcount_t cnt;
- semcount_t max;
-} gfxSem;
-
-/*===========================================================================*/
-/* Function declarations. */
-/*===========================================================================*/
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void gfxHalt(const char *msg);
-void gfxSleepMilliseconds(delaytime_t ms);
-void gfxSleepMicroseconds(delaytime_t ms);
-systemticks_t gfxSystemTicks(void);
-void gfxSystemLock(void);
-void gfxSystemUnlock(void);
-void gfxSemInit(gfxSem *psem, semcount_t val, semcount_t limit);
-void gfxSemDestroy(gfxSem *psem);
-bool_t gfxSemWait(gfxSem *psem, delaytime_t ms);
-void gfxSemSignal(gfxSem *psem);
-semcount_t gfxSemCounter(gfxSem *pSem);
-gfxThreadHandle gfxThreadCreate(void *stackarea, size_t stacksz, threadpriority_t prio, DECLARE_THREAD_FUNCTION((*fn),p), void *param);
-threadreturn_t gfxThreadWait(gfxThreadHandle thread);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* GFX_USE_OS_OSX */
-#endif /* _GOS_OSX_H */