You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.9 KiB
92 lines
2.9 KiB
/*
|
|
* 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
|
|
*/
|
|
|
|
/**
|
|
* This threading implementation supports most 32 bit processors with or without an
|
|
* underlying operating system. It uses cooperative multi-tasking. Be careful
|
|
* when writing device drivers not to disturb the assumptions this creates by performing
|
|
* call-backs from interrupt handlers to uGFX code unless you define the INTERRUPTS_OFF()
|
|
* and INTERRUPTS_ON() macros.
|
|
* It still requires some C runtime library support for the setjmp implementation...
|
|
* setjmp() and longjmp() - for threading
|
|
* memcpy() - for heap and threading
|
|
*
|
|
* You must also define the following routines in your own code so that timing functions will work...
|
|
* gTicks gfxSystemTicks(void);
|
|
* gTicks gfxMillisecondsToTicks(gDelay ms);
|
|
*/
|
|
#ifndef _GOS_X_THREADS_H
|
|
#define _GOS_X_THREADS_H
|
|
|
|
#if GOS_NEED_X_THREADS
|
|
|
|
typedef uint32_t gDelay;
|
|
typedef uint32_t gTicks;
|
|
typedef short gSemcount;
|
|
typedef int gThreadreturn;
|
|
typedef int gThreadpriority;
|
|
|
|
#define DECLARE_THREAD_FUNCTION(fnName, param) gThreadreturn fnName(void *param)
|
|
#define DECLARE_THREAD_STACK(name, sz) uint8_t name[(sz) & ~3];
|
|
#define THREAD_RETURN(retval) return retval
|
|
|
|
#define gDelayNone 0
|
|
#define gDelayForever ((gDelay)-1)
|
|
#define MAX_SEMAPHORE_COUNT 0x7FFF
|
|
#define gThreadpriorityLow 0
|
|
#define gThreadpriorityNormal 1
|
|
#define gThreadpriorityHigh 2
|
|
|
|
typedef struct {
|
|
gSemcount cnt;
|
|
gSemcount limit;
|
|
} gfxSem;
|
|
|
|
typedef uint32_t gfxMutex;
|
|
typedef void * gfxThreadHandle;
|
|
|
|
// Required timing functions - supplied by the user or the operating system
|
|
gTicks gfxSystemTicks(void);
|
|
gTicks gfxMillisecondsToTicks(gDelay ms);
|
|
|
|
// Sleep Functions
|
|
void gfxSleepMilliseconds(gDelay ms);
|
|
void gfxSleepMicroseconds(gDelay ms);
|
|
void gfxYield(void);
|
|
|
|
// System Locking
|
|
void gfxSystemLock(void);
|
|
void gfxSystemUnlock(void);
|
|
|
|
// Mutexes
|
|
void gfxMutexInit(gfxMutex *pmutex);
|
|
#define gfxMutexDestroy(pmutex)
|
|
void gfxMutexEnter(gfxMutex *pmutex);
|
|
void gfxMutexExit(gfxMutex *pmutex);
|
|
|
|
// Semaphores
|
|
void gfxSemInit(gfxSem *psem, gSemcount val, gSemcount limit);
|
|
#define gfxSemDestroy(psem)
|
|
gBool gfxSemWait(gfxSem *psem, gDelay ms);
|
|
gBool gfxSemWaitI(gfxSem *psem);
|
|
void gfxSemSignal(gfxSem *psem);
|
|
void gfxSemSignalI(gfxSem *psem);
|
|
|
|
// Threads
|
|
gfxThreadHandle gfxThreadCreate(void *stackarea, size_t stacksz, gThreadpriority prio, DECLARE_THREAD_FUNCTION((*fn),p), void *param);
|
|
#define gfxThreadClose(thread)
|
|
gThreadreturn gfxThreadWait(gfxThreadHandle thread);
|
|
gfxThreadHandle gfxThreadMe(void);
|
|
|
|
/** The following is not part of the public ugfx API as some operating systems
|
|
* simply do not provide this capability.
|
|
* For RAW32 we need it anyway so we might as well declare it here.
|
|
*/
|
|
void gfxThreadExit(gThreadreturn ret);
|
|
|
|
#endif /* GOS_NEED_X_THREADS */
|
|
#endif /* _GOS_X_THREADS_H */
|
|
|