Changeset 28307 for trunk/psLib/src/sys/psThread.c
- Timestamp:
- Jun 14, 2010, 12:03:59 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psThread.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psThread.c
r28140 r28307 210 210 psThreadTask *task = psHashLookup(tasks, job->type); // Task to execute job 211 211 psAssert(task, "Couldn't find thread task %s", job->type); 212 psAssert(job->args->n == task->nArgs, "invalid number of arguments to %s (%ld supplied, expected %d)", task->type, job->args->n, task->nArgs); 212 psAssert(job->args->n == task->nArgs, 213 "invalid number of arguments to %s (%ld supplied, expected %d)", 214 task->type, job->args->n, task->nArgs); 213 215 bool status = task->function(job); // Status of executing task 214 216
Note:
See TracChangeset
for help on using the changeset viewer.
