IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 3, 2004, 3:09:20 PM (22 years ago)
Author:
rhl
Message:

Follow changes to psMem APIs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/src/Utils/memory.c

    r446 r566  
    5454static psMemExhaustedCB memExhaustedCB = memExhaustedCB0;
    5555
    56 psMemExhaustedCB psMemExhaustedSetCB(psMemExhaustedCB func)
     56psMemExhaustedCB psMemExhaustedCBSet(psMemExhaustedCB func)
    5757{
    5858    psMemExhaustedCB old = memExhaustedCB;
     
    9191static psMemProblemCB memProblemCB = memProblemCB0;
    9292
    93 psMemProblemCB psMemProblemSetCB(psMemProblemCB func)
     93psMemProblemCB psMemProblemCBSet(psMemProblemCB func)
    9494{
    9595    psMemProblemCB old = memProblemCB;
     
    107107long p_psMemFreeID = 0;                 // notify user this block is freed
    108108
    109 long psMemSetAllocateID(long id)        // set p_psMemAllocateID to id
     109long psMemAllocateIDSet(long id)        // set p_psMemAllocateID to id
    110110{
    111111    long old = p_psMemAllocateID;
     
    115115}
    116116
    117 long psMemSetFreeID(long id)            // set p_psMemFreeID to id
     117long psMemFreeIDSet(long id)            // set p_psMemFreeID to id
    118118{
    119119    long old = p_psMemFreeID;
     
    153153static psMemFreeCB memFreeCB = memFreeCB0;
    154154
    155 psMemAllocateCB psMemAllocateSetCB(psMemAllocateCB func)
     155psMemAllocateCB psMemAllocateCBSet(psMemAllocateCB func)
    156156{
    157157    psMemAllocateCB old = memAllocateCB;
     
    162162}
    163163
    164 psMemFreeCB psMemFreeSetCB(psMemFreeCB func)
     164psMemFreeCB psMemFreeCBSet(psMemFreeCB func)
    165165{
    166166    psMemFreeCB old = memFreeCB;
Note: See TracChangeset for help on using the changeset viewer.