X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=audiod.c;h=f412dc6d3b5e30ed5514eaacd6f6c6add0e419cc;hp=91122308f8dada77a3a73121968dca47305d7fc7;hb=6e83b4bcdf55b8daa551a57923fe9bb01c870325;hpb=ce462a35951601577f187e30e0a651ed04c3fb51 diff --git a/audiod.c b/audiod.c index 91122308..f412dc6d 100644 --- a/audiod.c +++ b/audiod.c @@ -1032,7 +1032,7 @@ static void command_pre_select(struct sched *s, struct task *t) para_fd_set(ct->fd, &s->rfds, &s->max_fileno); } -static void command_post_select(struct sched *s, struct task *t) +static int command_post_select(struct sched *s, struct task *t) { int ret; struct command_task *ct = container_of(t, struct command_task, task); @@ -1049,13 +1049,14 @@ static void command_post_select(struct sched *s, struct task *t) if (ret < 0) PARA_ERROR_LOG("%s\n", para_strerror(-ret)); audiod_status_dump(); + return 0; } static void init_command_task(struct command_task *ct) { ct->task.pre_select = command_pre_select; - ct->task.post_select = command_post_select; - ct->task.new_post_select = NULL; + ct->task.new_post_select = command_post_select; + ct->task.post_select = NULL; ct->task.error = 0; ct->fd = audiod_get_socket(); /* doesn't return on errors */ sprintf(ct->task.status, "command task");