compiler warnings

ugfx_release_2.6
Joel Bodenmann 2013-07-25 13:52:18 +02:00
parent 0194b87efe
commit 7cd43464ed
3 changed files with 3 additions and 7 deletions

View File

@ -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. */

View File

@ -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. */

View File

@ -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 ***