From 41fd9d94b3b37a8fdc3ed0326da893d1d3788189 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Tue, 1 Apr 2008 22:42:00 +0200 Subject: [PATCH] client.c: Fix error value of supervisor task. --- client.c | 4 ++-- error.h | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/client.c b/client.c index f47a0bec..c9235527 100644 --- a/client.c +++ b/client.c @@ -35,7 +35,7 @@ static void supervisor_pre_select(struct sched *s, struct task *t) ct->inbuf = sit.buf; ct->in_loaded = &sit.loaded; ct->in_error = &sit.task.error; - t->error = -1; + t->error = -E_TASK_STARTED; goto min_delay; } if (ct->status == CL_RECEIVING) { @@ -44,7 +44,7 @@ static void supervisor_pre_select(struct sched *s, struct task *t) sot.loaded = &ct->loaded; sot.input_error = &ct->task.error; register_task(&sot.task); - t->error = -1; + t->error = -E_TASK_STARTED; goto min_delay; } return; diff --git a/error.h b/error.h index 41ea2459..f492eff1 100644 --- a/error.h +++ b/error.h @@ -13,7 +13,6 @@ DEFINE_ERRLIST_OBJECT_ENUM; /* these do not need error handling (yet) */ #define SERVER_ERRORS -#define CLIENT_ERRORS #define WAV_ERRORS #define COMPRESS_ERRORS #define TIME_ERRORS @@ -32,6 +31,10 @@ DEFINE_ERRLIST_OBJECT_ENUM; extern const char **para_errlist[]; +#define CLIENT_ERRORS \ + PARA_ERROR(TASK_STARTED, "task started"), \ + + #define AFH_ERRORS \ PARA_ERROR(AFH_SYNTAX, "afh syntax error"), \ PARA_ERROR(AFH_SHORT_WRITE, "afh short write"), \ -- 2.39.2