aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/semaphores.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-11-30 09:00:50 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-11-30 09:00:50 +0000
commitc303a8a06e68fb30c082a4f1a4fcc675ff0bd39e (patch)
treefbaf137ef85a62d1977d14e412409e645fd048ca /src/include/semaphores.h
parentf6e46bac2e7d9a62b54deac25b09b7f26bee40b1 (diff)
downloadChibiOS-c303a8a06e68fb30c082a4f1a4fcc675ff0bd39e.tar.gz
ChibiOS-c303a8a06e68fb30c082a4f1a4fcc675ff0bd39e.tar.bz2
ChibiOS-c303a8a06e68fb30c082a4f1a4fcc675ff0bd39e.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@121 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include/semaphores.h')
-rw-r--r--src/include/semaphores.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/semaphores.h b/src/include/semaphores.h
index 4ffb3dc0d..e17d03a6a 100644
--- a/src/include/semaphores.h
+++ b/src/include/semaphores.h
@@ -43,8 +43,8 @@ extern "C" {
void chSemInit(Semaphore *sp, t_cnt n);
void chSemReset(Semaphore *sp, t_cnt n);
void chSemResetI(Semaphore *sp, t_cnt n);
- void chSemWait(Semaphore *sp);
- void chSemWaitS(Semaphore *sp);
+ t_msg chSemWait(Semaphore *sp);
+ t_msg chSemWaitS(Semaphore *sp);
#ifdef CH_USE_SEMAPHORES_TIMEOUT
t_msg chSemWaitTimeout(Semaphore *sp, t_time time);
t_msg chSemWaitTimeoutS(Semaphore *sp, t_time time);