From d6efd51b098cd20f549d7d4e1e4aeff6e5c60b07 Mon Sep 17 00:00:00 2001 From: Ron Koenderink Date: Thu, 18 Jan 2007 01:12:43 +0000 Subject: [PATCH] (struct loc_Thread_t): Rename struct loc_Thread_t to struct loc_Thread as the struct loc_Thread_t is not a typedef. No functional changes. --- include/empthread.h | 2 +- src/lib/empthread/ntthread.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/empthread.h b/include/empthread.h index 1c4ff15d..3ef3fcf1 100644 --- a/include/empthread.h +++ b/include/empthread.h @@ -110,7 +110,7 @@ typedef struct empth_rwlock_t empth_rwlock_t; #define EMPTH_PRINT 0x1 #define EMPTH_STACKCHECK 0x2 -typedef struct loc_Thread_t empth_t; +typedef struct loc_Thread empth_t; typedef struct loc_Sem_t empth_sem_t; typedef struct loc_RWLock_t empth_rwlock_t; diff --git a/src/lib/empthread/ntthread.c b/src/lib/empthread/ntthread.c index 0909b206..db0333e1 100644 --- a/src/lib/empthread/ntthread.c +++ b/src/lib/empthread/ntthread.c @@ -63,9 +63,9 @@ #define loc_MIN_THREAD_STACK 16384 /************************ - * loc_Thread_t + * loc_Thread */ -struct loc_Thread_t { +struct loc_Thread { /* The thread name, passed in at create time. */ char szName[17];