better name

This commit is contained in:
Mylloon 2024-04-19 16:27:58 +02:00
parent 4ecc92f7ff
commit dc6a96abe7
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -36,7 +36,7 @@ struct scheduler {
static struct scheduler sched; static struct scheduler sched;
/* Lance une tâche de la pile */ /* Lance une tâche de la pile */
void *worker_routine(void *); void *sched_worker(void *);
int int
sched_init(int nthreads, int qlen, taskfunc f, void *closure) sched_init(int nthreads, int qlen, taskfunc f, void *closure)
@ -73,7 +73,7 @@ sched_init(int nthreads, int qlen, taskfunc f, void *closure)
pthread_t threads[nthreads]; pthread_t threads[nthreads];
for(int i = 0; i < nthreads; ++i) { for(int i = 0; i < nthreads; ++i) {
if(pthread_create(&threads[i], NULL, worker_routine, &sched) != 0) { if(pthread_create(&threads[i], NULL, sched_worker, &sched) != 0) {
fprintf(stderr, "Can't create the thread %d", i); fprintf(stderr, "Can't create the thread %d", i);
if(i > 0) { if(i > 0) {
@ -128,7 +128,7 @@ sched_spawn(taskfunc f, void *closure, struct scheduler *s)
} }
void * void *
worker_routine(void *arg) sched_worker(void *arg)
{ {
struct scheduler *s = (struct scheduler *)arg; struct scheduler *s = (struct scheduler *)arg;