Changeset 41928 for branches/eam_branches/ipp-20211108
- Timestamp:
- Nov 23, 2021, 9:07:21 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20211108/ppStack/src/ppStackCombinePercent.c
r41908 r41928 1 1 #include "ppStack.h" 2 2 3 # define USE_THREADS 1 3 4 // #define TESTING 4 5 … … 29 30 psArrayAdd(job->args, 1, options); 30 31 psArrayAdd(job->args, 1, config); 31 if (!psThreadJobAddPending(job)) { 32 return false; 33 } 32 33 if (USE_THREADS) { 34 if (!psThreadJobAddPending(job)) { 35 return false; 36 } 37 } else { 38 ppStackReadoutPercentThread(job); 39 } 34 40 } 35 36 if ( !psThreadPoolWait(true, true)) {41 42 if (USE_THREADS && !psThreadPoolWait(true, true)) { 37 43 psError(psErrorCodeLast(), false, "Unable to do initial combination."); 38 44 return false;
Note:
See TracChangeset
for help on using the changeset viewer.
