Ignore:
Timestamp:
Aug 31, 2007, 6:09:23 AM (18 years ago)
Author:
bird
Message:

kHlp work...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/kLdr/kLdr.c

    r3570 r3573  
    5252*******************************************************************************/
    5353#include <k/kLdr.h>
    54 #include "kLdrHlp.h"
    5554#include "kLdrInternal.h"
    5655
     
    9594            break;
    9695        }
    97         kldrHlpSleep(1);
     96        kHlpSleep(1);
    9897    }
    9998
     
    101100     * Do the initialization.
    102101     */
    103     rc = kldrHlpHeapInit();
     102    rc = kHlpHeapInit();
    104103    if (!rc)
    105104    {
    106         rc = kldrHlpSemInit();
     105        rc = kHlpSemInit();
    107106        if (!rc)
    108107        {
     
    113112                return 0;
    114113            }
    115             kldrHlpSemTerm();
     114            kHlpSemTerm();
    116115        }
    117         kldrHlpHeapTerm();
     116        kHlpHeapTerm();
    118117    }
    119118    g_fInitialized = -2;
     
    135134     * Do the termination.
    136135     */
    137     kldrHlpSemTerm();
    138     kldrHlpHeapTerm();
     136    kHlpSemTerm();
     137    kHlpHeapTerm();
    139138
    140139    /* done */
Note: See TracChangeset for help on using the changeset viewer.