Changeset 461
- Timestamp:
- 10/25/09 14:58:30 (4 weeks ago)
- Location:
- WizardsToolkit/trunk/wizard
- Files:
-
- 3 modified
-
blob.c (modified) (1 diff)
-
configure.c (modified) (1 diff)
-
semaphore.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
WizardsToolkit/trunk/wizard/blob.c
r459 r461 49 49 #include "wizard/exception-private.h" 50 50 #include "wizard/memory_.h" 51 #include "wizard/semaphore.h" 51 52 #include "wizard/utility.h" 52 53 #include "blob.h" -
WizardsToolkit/trunk/wizard/configure.c
r459 r461 819 819 (instantiate_configure == WizardFalse)) 820 820 { 821 if (configure_semaphore == (Sem ephoreInfo *) NULL)821 if (configure_semaphore == (SemaphoreInfo *) NULL) 822 822 AcquireSemaphoreInfo(&configure_semaphore); 823 823 (void) LockSemaphoreInfo(configure_semaphore); -
WizardsToolkit/trunk/wizard/semaphore.h
r459 r461 36 36 37 37 extern WizardExport WizardBooleanType 38 (void)LockSemaphoreInfo(SemaphoreInfo *),38 LockSemaphoreInfo(SemaphoreInfo *), 39 39 SemaphoreComponentGenesis(void), 40 (void)UnlockSemaphoreInfo(SemaphoreInfo *);40 UnlockSemaphoreInfo(SemaphoreInfo *); 41 41 42 42 #if defined(__cplusplus) || defined(c_plusplus)
