Changes between Version 24 and Version 25 of AppMultiThread
- Timestamp:
- Aug 21, 2009, 4:15:32 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppMultiThread
v24 v25 27 27 * Link the following function into your scheduler (customized as needed): 28 28 {{{ 29 intapp_plan(SCHEDULER_REQUEST& sreq, const char* plan_class, HOST_USAGE& hu) {29 bool app_plan(SCHEDULER_REQUEST& sreq, const char* plan_class, HOST_USAGE& hu) { 30 30 if (!strcmp(plan_class, "par64")) { 31 31 // the following is for an app that can use anywhere … … 50 50 ); 51 51 } 52 return 0;52 return true; 53 53 } 54 return PLAN_REJECT_UNKNOWN; 54 ... 55 55 } 56 56 }}}