aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/gos_ecos.h
diff options
context:
space:
mode:
authorinmarket <inmarket@ugfx.io>2017-08-16 16:49:02 +1000
committerinmarket <inmarket@ugfx.io>2017-08-16 16:49:02 +1000
commitd7b083da1e3fbc9355422bc29470c387e88389d7 (patch)
tree5b21b55ae61e54fb1bdad40aaf0f590385176c02 /src/gos/gos_ecos.h
parent422e95becf719ab3dfc3e37d5fda1b6f37dd02fb (diff)
downloaduGFX-d7b083da1e3fbc9355422bc29470c387e88389d7.tar.gz
uGFX-d7b083da1e3fbc9355422bc29470c387e88389d7.tar.bz2
uGFX-d7b083da1e3fbc9355422bc29470c387e88389d7.zip
Remove long obsoleted (and dubious) functions gfxSemCounter() and gfxSemCounterI()
Diffstat (limited to 'src/gos/gos_ecos.h')
-rw-r--r--src/gos/gos_ecos.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gos/gos_ecos.h b/src/gos/gos_ecos.h
index 6aa55a3a..0e438fb0 100644
--- a/src/gos/gos_ecos.h
+++ b/src/gos/gos_ecos.h
@@ -91,8 +91,6 @@ bool_t gfxSemWait(gfxSem *psem, delaytime_t ms);
bool_t gfxSemWaitI(gfxSem *psem);
void gfxSemSignal(gfxSem *psem);
void gfxSemSignalI(gfxSem *psem);
-semcount_t gfxSemCounterI(gfxSem *psem);
-#define gfxSemCounter(psem) gfxSemCounterI(psem)
gfxThreadHandle gfxThreadCreate(void *stackarea, size_t stacksz, threadpriority_t prio, DECLARE_THREAD_FUNCTION((*fn),p), void *param);
#define gfxThreadWait(thread) NOTIMPLEMENTED_YET