Changeset 3573 for trunk/kStuff/kLdr/kLdr.c
- Timestamp:
- Aug 31, 2007, 6:09:23 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/kLdr/kLdr.c
r3570 r3573 52 52 *******************************************************************************/ 53 53 #include <k/kLdr.h> 54 #include "kLdrHlp.h"55 54 #include "kLdrInternal.h" 56 55 … … 95 94 break; 96 95 } 97 k ldrHlpSleep(1);96 kHlpSleep(1); 98 97 } 99 98 … … 101 100 * Do the initialization. 102 101 */ 103 rc = k ldrHlpHeapInit();102 rc = kHlpHeapInit(); 104 103 if (!rc) 105 104 { 106 rc = k ldrHlpSemInit();105 rc = kHlpSemInit(); 107 106 if (!rc) 108 107 { … … 113 112 return 0; 114 113 } 115 k ldrHlpSemTerm();114 kHlpSemTerm(); 116 115 } 117 k ldrHlpHeapTerm();116 kHlpHeapTerm(); 118 117 } 119 118 g_fInitialized = -2; … … 135 134 * Do the termination. 136 135 */ 137 k ldrHlpSemTerm();138 k ldrHlpHeapTerm();136 kHlpSemTerm(); 137 kHlpHeapTerm(); 139 138 140 139 /* done */
Note:
See TracChangeset
for help on using the changeset viewer.