Changeset 470 for WizardsToolkit/trunk
- Timestamp:
- 10/26/09 06:55:10 (4 weeks ago)
- Location:
- WizardsToolkit/trunk/wizard
- Files:
-
- 5 modified
-
configure.c (modified) (1 diff)
-
log.c (modified) (1 diff)
-
mime.c (modified) (1 diff)
-
random.c (modified) (1 diff)
-
resource.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
WizardsToolkit/trunk/wizard/configure.c
r461 r470 115 115 WizardExport WizardBooleanType ConfigureComponentGenesis(void) 116 116 { 117 assert(configure_semaphore == (SemaphoreInfo *) NULL); 118 configure_semaphore=AllocateSemaphoreInfo(); 117 AcquireSemaphoreInfo(&configure_semaphore); 119 118 return(WizardTrue); 120 119 } -
WizardsToolkit/trunk/wizard/log.c
r459 r470 689 689 WizardExport WizardBooleanType LogComponentGenesis(void) 690 690 { 691 assert(log_semaphore == (SemaphoreInfo *) NULL); 692 log_semaphore=AllocateSemaphoreInfo(); 691 AcquireSemaphoreInfo(&log_semaphore); 693 692 return(WizardTrue); 694 693 } -
WizardsToolkit/trunk/wizard/mime.c
r459 r470 1000 1000 WizardExport WizardBooleanType MimeComponentGenesis(void) 1001 1001 { 1002 assert(mime_semaphore == (SemaphoreInfo *) NULL); 1003 mime_semaphore=AllocateSemaphoreInfo(); 1002 AcquireSemaphoreInfo(&mime_semaphore); 1004 1003 return(WizardTrue); 1005 1004 } -
WizardsToolkit/trunk/wizard/random.c
r452 r470 878 878 WizardExport WizardBooleanType RandomComponentGenesis(void) 879 879 { 880 assert(random_semaphore == (SemaphoreInfo *) NULL); 881 random_semaphore=AllocateSemaphoreInfo(); 880 AcquireSemaphoreInfo(&random_semaphore); 882 881 return(WizardTrue); 883 882 } -
WizardsToolkit/trunk/wizard/resource.c
r459 r470 855 855 Set Wizard resource limits. 856 856 */ 857 assert(resource_semaphore == (SemaphoreInfo *) NULL); 858 resource_semaphore=AllocateSemaphoreInfo(); 857 AcquireSemaphoreInfo(&resource_semaphore); 859 858 pagesize=(-1); 860 859 #if defined(WIZARDSTOOLKIT_HAVE_SYSCONF) && defined(_SC_PAGESIZE)
