IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 27, 2008, 12:42:32 PM (18 years ago)
Author:
eugene
Message:

define psThreadPoolFinalize

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20080719/psLib/src/sys/psThread.c

    r18751 r18754  
    154154    return false;
    155155}
     156
     157// create a pool of Nthreads, each running the user's job-launcher function
     158bool psThreadPoolFinalize () {
     159
     160    psFree (pending);
     161    pending = NULL;
     162
     163    psFree (done);
     164    done = NULL;
     165
     166    psFree (pool);
     167    pool = NULL;
     168
     169    return true;
     170}
     171
Note: See TracChangeset for help on using the changeset viewer.