From c93c50fbc4034eb16bd1b53dc2e76a14bfa7b22f Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 30 Dec 2008 14:26:12 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@564 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/include/condvars.h | 2 +- src/include/semaphores.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include') 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.*/ -- cgit v1.2.3