aboutsummaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-12-30 14:26:12 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-12-30 14:26:12 +0000
commitc93c50fbc4034eb16bd1b53dc2e76a14bfa7b22f (patch)
treea910a8df0b4025774c0d7dbee760232f25a2f8b5 /src/include
parent6025b723ac3bc412d732b0ee632c418550779992 (diff)
downloadChibiOS-c93c50fbc4034eb16bd1b53dc2e76a14bfa7b22f.tar.gz
ChibiOS-c93c50fbc4034eb16bd1b53dc2e76a14bfa7b22f.tar.bz2
ChibiOS-c93c50fbc4034eb16bd1b53dc2e76a14bfa7b22f.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@564 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include')
-rw-r--r--src/include/condvars.h2
-rw-r--r--src/include/semaphores.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/condvars.h b/src/include/condvars.h
index 83afe6db7..be23bf6d1 100644
--- a/src/include/condvars.h
+++ b/src/include/condvars.h
@@ -34,7 +34,7 @@
/**
* CondVar structure.
*/
-typedef struct {
+typedef struct CondVar {
ThreadsQueue c_queue;
} CondVar;
diff --git a/src/include/semaphores.h b/src/include/semaphores.h
index 5faa6e97e..ba75d8ba7 100644
--- a/src/include/semaphores.h
+++ b/src/include/semaphores.h
@@ -30,7 +30,7 @@
/**
* Semaphore structure.
*/
-typedef struct {
+typedef struct Semaphore {
/** Queue of the threads sleeping on this Semaphore.*/
ThreadsQueue s_queue;
/** The Semaphore counter.*/