aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-07-25 13:52:18 +0200
committerJoel Bodenmann <joel@unormal.org>2013-07-25 13:52:18 +0200
commit7cd43464ed721a7abd34e0c0b33a4a3822bbd3ec (patch)
tree2a986f961ad1f957749fde999b48c2568e5768f6
parent0194b87efe7805845db454d6b5291699d8eaa0a1 (diff)
downloaduGFX-7cd43464ed721a7abd34e0c0b33a4a3822bbd3ec.tar.gz
uGFX-7cd43464ed721a7abd34e0c0b33a4a3822bbd3ec.tar.bz2
uGFX-7cd43464ed721a7abd34e0c0b33a4a3822bbd3ec.zip
compiler warnings
-rw-r--r--include/gos/linux.h5
-rw-r--r--include/gos/osx.h4
-rw-r--r--releases.txt1
3 files changed, 3 insertions, 7 deletions
diff --git a/include/gos/linux.h b/include/gos/linux.h
index 8be737b3..7529a962 100644
--- a/include/gos/linux.h
+++ b/include/gos/linux.h
@@ -48,9 +48,6 @@ typedef pthread_mutex_t gfxMutex;
#define gfxSemSignalI(psem) gfxSemSignal(psem)
#define gfxSemCounterI(pSem) ((pSem)->cnt)
-
-#define FALSE 0
-#define TRUE 1
#define TIME_IMMEDIATE 0
#define TIME_INFINITE ((delaytime_t)-1)
#define MAX_SEMAPHORE_COUNT ((semcount_t)-1)
@@ -63,7 +60,7 @@ typedef struct gfxSem {
pthread_cond_t cond;
semcount_t cnt;
semcount_t max;
- } gfxSem;
+} gfxSem;
/*===========================================================================*/
/* Function declarations. */
diff --git a/include/gos/osx.h b/include/gos/osx.h
index fde1d005..2ba1c45d 100644
--- a/include/gos/osx.h
+++ b/include/gos/osx.h
@@ -48,8 +48,6 @@ typedef pthread_mutex_t gfxMutex;
#define gfxSemSignalI(psem) gfxSemSignal(psem)
#define gfxSemCounterI(pSem) ((pSem)->cnt)
-
-#define FALSE 0
#define TRUE 1
#define TIME_IMMEDIATE 0
#define TIME_INFINITE ((delaytime_t)-1)
@@ -63,7 +61,7 @@ typedef struct gfxSem {
pthread_cond_t cond;
semcount_t cnt;
semcount_t max;
- } gfxSem;
+} gfxSem;
/*===========================================================================*/
/* Function declarations. */
diff --git a/releases.txt b/releases.txt
index 4dff6a1a..3007c8f8 100644
--- a/releases.txt
+++ b/releases.txt
@@ -15,6 +15,7 @@ FEATURE: Added a lot of new widgets
FEATURE: Added gfxRealloc() to the GOS module
FIX: gfxHalt() fix for the Win32 port
FIX: Cleaned up board file mess
+FIX: POSIX port removed, now dedicated OS-X and Linux ports
*** changes after 1.6 ***