(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.
This commit is contained in:
Ron Koenderink 2007-01-18 01:12:43 +00:00
parent 98250f2300
commit d6efd51b09
2 changed files with 3 additions and 3 deletions

View file

@ -110,7 +110,7 @@ typedef struct empth_rwlock_t empth_rwlock_t;
#define EMPTH_PRINT 0x1 #define EMPTH_PRINT 0x1
#define EMPTH_STACKCHECK 0x2 #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_Sem_t empth_sem_t;
typedef struct loc_RWLock_t empth_rwlock_t; typedef struct loc_RWLock_t empth_rwlock_t;

View file

@ -63,9 +63,9 @@
#define loc_MIN_THREAD_STACK 16384 #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. */ /* The thread name, passed in at create time. */
char szName[17]; char szName[17];