This repository has been archived on 2024-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
work-stealing-scheduler/src/sched.c

10 lines
197 B
C
Raw Normal View History

#include "../includes/sched.h"
2024-03-09 18:47:40 +01:00
int sched_init(int nthreads, int qlen, taskfunc f, void *closure) {
return -1;
}
int sched_spawn(taskfunc f, void *closure, struct scheduler *s) {
return -1;
}