compiler warnings
This commit is contained in:
parent
0194b87efe
commit
7cd43464ed
3 changed files with 3 additions and 7 deletions
|
@ -48,9 +48,6 @@ typedef pthread_mutex_t gfxMutex;
|
||||||
#define gfxSemSignalI(psem) gfxSemSignal(psem)
|
#define gfxSemSignalI(psem) gfxSemSignal(psem)
|
||||||
#define gfxSemCounterI(pSem) ((pSem)->cnt)
|
#define gfxSemCounterI(pSem) ((pSem)->cnt)
|
||||||
|
|
||||||
|
|
||||||
#define FALSE 0
|
|
||||||
#define TRUE 1
|
|
||||||
#define TIME_IMMEDIATE 0
|
#define TIME_IMMEDIATE 0
|
||||||
#define TIME_INFINITE ((delaytime_t)-1)
|
#define TIME_INFINITE ((delaytime_t)-1)
|
||||||
#define MAX_SEMAPHORE_COUNT ((semcount_t)-1)
|
#define MAX_SEMAPHORE_COUNT ((semcount_t)-1)
|
||||||
|
@ -63,7 +60,7 @@ typedef struct gfxSem {
|
||||||
pthread_cond_t cond;
|
pthread_cond_t cond;
|
||||||
semcount_t cnt;
|
semcount_t cnt;
|
||||||
semcount_t max;
|
semcount_t max;
|
||||||
} gfxSem;
|
} gfxSem;
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
/* Function declarations. */
|
/* Function declarations. */
|
||||||
|
|
|
@ -48,8 +48,6 @@ typedef pthread_mutex_t gfxMutex;
|
||||||
#define gfxSemSignalI(psem) gfxSemSignal(psem)
|
#define gfxSemSignalI(psem) gfxSemSignal(psem)
|
||||||
#define gfxSemCounterI(pSem) ((pSem)->cnt)
|
#define gfxSemCounterI(pSem) ((pSem)->cnt)
|
||||||
|
|
||||||
|
|
||||||
#define FALSE 0
|
|
||||||
#define TRUE 1
|
#define TRUE 1
|
||||||
#define TIME_IMMEDIATE 0
|
#define TIME_IMMEDIATE 0
|
||||||
#define TIME_INFINITE ((delaytime_t)-1)
|
#define TIME_INFINITE ((delaytime_t)-1)
|
||||||
|
@ -63,7 +61,7 @@ typedef struct gfxSem {
|
||||||
pthread_cond_t cond;
|
pthread_cond_t cond;
|
||||||
semcount_t cnt;
|
semcount_t cnt;
|
||||||
semcount_t max;
|
semcount_t max;
|
||||||
} gfxSem;
|
} gfxSem;
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
/* Function declarations. */
|
/* Function declarations. */
|
||||||
|
|
|
@ -15,6 +15,7 @@ FEATURE: Added a lot of new widgets
|
||||||
FEATURE: Added gfxRealloc() to the GOS module
|
FEATURE: Added gfxRealloc() to the GOS module
|
||||||
FIX: gfxHalt() fix for the Win32 port
|
FIX: gfxHalt() fix for the Win32 port
|
||||||
FIX: Cleaned up board file mess
|
FIX: Cleaned up board file mess
|
||||||
|
FIX: POSIX port removed, now dedicated OS-X and Linux ports
|
||||||
|
|
||||||
|
|
||||||
*** changes after 1.6 ***
|
*** changes after 1.6 ***
|
||||||
|
|
Loading…
Add table
Reference in a new issue