get rid of init_shed()
authorAndre <maan@p133.(none)>
Tue, 13 Jun 2006 04:26:45 +0000 (06:26 +0200)
committerAndre <maan@p133.(none)>
Tue, 13 Jun 2006 04:26:45 +0000 (06:26 +0200)
Instead, the first call to register_task initializes the scheduler.
User-friendly. Also, make pre_select_list and post_select_list static.

audiod.c
client.c
error.h
filter.c
recv.c
sched.c
sched.h
write.c

index 032f9cd0743a85a492b5cb446ebc965dc3b2cb1f..52f4ff4cb18919bea60e4106e350fa2d13de6874 100644 (file)
--- a/audiod.c
+++ b/audiod.c
@@ -1052,8 +1052,6 @@ int main(int argc, char *argv[])
        struct command_task command_task_struct, *cmd_task = &command_task_struct;
        struct task audiod_task_struct, *audiod_task = &audiod_task_struct;
 
        struct command_task command_task_struct, *cmd_task = &command_task_struct;
        struct task audiod_task_struct, *audiod_task = &audiod_task_struct;
 
-       init_sched();
-
        valid_fd_012();
        cmdline_parser(argc, argv, &conf);
        para_drop_privileges(conf.user_arg, conf.group_arg);
        valid_fd_012();
        cmdline_parser(argc, argv, &conf);
        para_drop_privileges(conf.user_arg, conf.group_arg);
index 97d5274666013968347d28d345e0af809f580559..94fff72d9fe558bfb9a1f8a8bcba955814151af0 100644 (file)
--- a/client.c
+++ b/client.c
@@ -422,7 +422,6 @@ int main(int argc, char *argv[])
        int ret;
        struct sched s;
 
        int ret;
        struct sched s;
 
-       init_sched();
        s.default_timeout.tv_sec = 1;
        s.default_timeout.tv_usec = 0;
        ret = client_parse_config(argc, argv, &pcd);
        s.default_timeout.tv_sec = 1;
        s.default_timeout.tv_usec = 0;
        ret = client_parse_config(argc, argv, &pcd);
diff --git a/error.h b/error.h
index 0c862a57a4d8464784cd05ad927706b8d118d821..f6f916ae03bf90f5200bbbb4eb36c72f3f24e48a 100644 (file)
--- a/error.h
+++ b/error.h
@@ -114,6 +114,7 @@ extern const char **para_errlist[];
 #define SCHED_ERRORS \
        PARA_ERROR(TASK_KILLED, "task killed"), \
        PARA_ERROR(NO_SUCH_TASK, "task not found"), \
 #define SCHED_ERRORS \
        PARA_ERROR(TASK_KILLED, "task killed"), \
        PARA_ERROR(NO_SUCH_TASK, "task not found"), \
+       PARA_ERROR(NOT_INITIALIZED, "scheduler not yet initialized"), \
 
 
 #define STDIN_ERRORS \
 
 
 #define STDIN_ERRORS \
index 608bb8b3bf5eedd8c1bac69d6454f857cb6efaeb..f49042f8c7ecfe901bcb01b5ef889d12e93b71b5 100644 (file)
--- a/filter.c
+++ b/filter.c
@@ -140,7 +140,6 @@ int main(int argc, char *argv[])
        int ret;
        struct sched s;
 
        int ret;
        struct sched s;
 
-       init_sched();
        stdin_set_defaults(sit);
        sit->buf = para_malloc(sit->bufsize),
 
        stdin_set_defaults(sit);
        sit->buf = para_malloc(sit->bufsize),
 
diff --git a/recv.c b/recv.c
index 8639ce2b63c654fa36595adcd79a2b68fbfa79e4..555b7c51d1c554ea02340443cd3d431fedcc3c63 100644 (file)
--- a/recv.c
+++ b/recv.c
@@ -72,7 +72,6 @@ int main(int argc, char *argv[])
        struct stdout_task sot;
        struct sched s;
 
        struct stdout_task sot;
        struct sched s;
 
-       init_sched();
        s.default_timeout.tv_sec = 1;
        s.default_timeout.tv_usec = 0;
 
        s.default_timeout.tv_sec = 1;
        s.default_timeout.tv_usec = 0;
 
diff --git a/sched.c b/sched.c
index 6b893d33c9ccb2b07c65fcb8fd02ac168d7bc6f8..c2a0e64b16326c5ce4f28b20cb4a048ae6322d30 100644 (file)
--- a/sched.c
+++ b/sched.c
 #include "string.h"
 #include "error.h"
 
 #include "string.h"
 #include "error.h"
 
-/**
- * The scheduler manages two lists of tasks.  The pre_select list contains
- * pointers to functions that are called before calling select() from the main
- * loop. Similarly, \a post_select_list is a list of function pointers each of
- * which is called after the select call.
- */
-struct list_head pre_select_list, post_select_list;
+static struct list_head pre_select_list, post_select_list;
+static int initialized;
 
 static struct timeval now_struct;
 
 static struct timeval now_struct;
-
 struct timeval *now = &now_struct;
 
 static void sched_preselect(struct sched *s)
 struct timeval *now = &now_struct;
 
 static void sched_preselect(struct sched *s)
@@ -83,7 +77,8 @@ static void sched_post_select(struct sched *s)
  */
 int sched(struct sched *s)
 {
  */
 int sched(struct sched *s)
 {
-
+       if (!initialized)
+               return -E_NOT_INITIALIZED;
        gettimeofday(now, NULL);
 again:
        FD_ZERO(&s->rfds);
        gettimeofday(now, NULL);
 again:
        FD_ZERO(&s->rfds);
@@ -102,6 +97,17 @@ again:
        goto again;
 }
 
        goto again;
 }
 
+/**
+ * initialize the paraslash scheduler
+ */
+static void init_sched(void)
+{
+       PARA_INFO_LOG("%s", "initializing scheduler\n");
+       INIT_LIST_HEAD(&pre_select_list);
+       INIT_LIST_HEAD(&post_select_list);
+       initialized = 1;
+};
+
 /**
  * add a task to the scheduler
  *
 /**
  * add a task to the scheduler
  *
@@ -114,6 +120,8 @@ again:
  */
 void register_task(struct task *t)
 {
  */
 void register_task(struct task *t)
 {
+       if (!initialized)
+               init_sched();
        PARA_INFO_LOG("registering %s (%p)\n", t->status, t);
        if (t->pre_select) {
                PARA_DEBUG_LOG("pre_select: %p\n", &t->pre_select);
        PARA_INFO_LOG("registering %s (%p)\n", t->status, t);
        if (t->pre_select) {
                PARA_DEBUG_LOG("pre_select: %p\n", &t->pre_select);
@@ -135,6 +143,8 @@ void register_task(struct task *t)
  */
 void unregister_task(struct task *t)
 {
  */
 void unregister_task(struct task *t)
 {
+       if (!initialized)
+               return;
        PARA_INFO_LOG("unregistering %s (%p)\n", t->status, t);
        if (t->pre_select)
                list_del(&t->pre_select_node);
        PARA_INFO_LOG("unregistering %s (%p)\n", t->status, t);
        if (t->pre_select)
                list_del(&t->pre_select_node);
@@ -142,15 +152,6 @@ void unregister_task(struct task *t)
                list_del(&t->post_select_node);
 };
 
                list_del(&t->post_select_node);
 };
 
-/**
- * initialize the paraslash scheduler
- */
-void init_sched(void)
-{
-       INIT_LIST_HEAD(&pre_select_list);
-       INIT_LIST_HEAD(&post_select_list);
-};
-
 /**
  * unregister all tasks
  *
 /**
  * unregister all tasks
  *
@@ -161,11 +162,14 @@ void sched_shutdown(void)
 {
        struct task *t, *tmp;
 
 {
        struct task *t, *tmp;
 
+       if (!initialized)
+               return;
        list_for_each_entry_safe(t, tmp, &pre_select_list, pre_select_node)
                unregister_task(t);
        /* remove tasks which do not have a pre_select hook */
        list_for_each_entry_safe(t, tmp, &post_select_list, post_select_node)
                unregister_task(t);
        list_for_each_entry_safe(t, tmp, &pre_select_list, pre_select_node)
                unregister_task(t);
        /* remove tasks which do not have a pre_select hook */
        list_for_each_entry_safe(t, tmp, &post_select_list, post_select_node)
                unregister_task(t);
+       initialized = 0;
 };
 
 /**
 };
 
 /**
@@ -181,6 +185,9 @@ char *get_task_list(void)
 {
        struct task *t, *tmp;
        char *msg = NULL;
 {
        struct task *t, *tmp;
        char *msg = NULL;
+
+       if (!initialized)
+               return NULL;
        list_for_each_entry_safe(t, tmp, &pre_select_list, pre_select_node) {
                char *tmp_msg;
                tmp_msg = make_message("%s%p\tpre\t%s\n", msg? msg : "", t, t->status);
        list_for_each_entry_safe(t, tmp, &pre_select_list, pre_select_node) {
                char *tmp_msg;
                tmp_msg = make_message("%s%p\tpre\t%s\n", msg? msg : "", t, t->status);
@@ -207,13 +214,16 @@ char *get_task_list(void)
  * Find the task identified by \a id, set the tasks' return value to
  * \p -E_TASK_KILLED and call the event handler of the task.
  *
  * Find the task identified by \a id, set the tasks' return value to
  * \p -E_TASK_KILLED and call the event handler of the task.
  *
- * \return Positive on sucess, negative if \a id does not correspond to a
- * registered task.
+ * \return Positive on success, negative on errors (e.g. if \a id does not
+ * correspond to a registered task).
  */
 int kill_task(char *id)
 {
        struct task *t, *tmp;
        char buf[20];
  */
 int kill_task(char *id)
 {
        struct task *t, *tmp;
        char buf[20];
+
+       if (!initialized)
+               return -E_NOT_INITIALIZED;
        list_for_each_entry_safe(t, tmp, &pre_select_list, pre_select_node) {
                sprintf(buf, "%p", t);
                if (strcmp(id, buf))
        list_for_each_entry_safe(t, tmp, &pre_select_list, pre_select_node) {
                sprintf(buf, "%p", t);
                if (strcmp(id, buf))
diff --git a/sched.h b/sched.h
index ebd38a8ceb8dbf8cfbe7a6fe6982f8baeaa37845..bdca15f828cb60c177b7d8fb0cb497c1eb99b375 100644 (file)
--- a/sched.h
+++ b/sched.h
 /**
  * paraslash's scheduler
  *
 /**
  * paraslash's scheduler
  *
- * desinged with KISS in mind. It maintains two lists: The pre_select list
- * and the post_select list. Tasks add hokks to these lists by registering
- * themselves to the scheduler.
+ * desinged with KISS in mind. It manages two lists of tasks.  The pre_select
+ * list contains pointers to functions that are called before calling select()
+ * from the main loop. Similarly, \a post_select_list is a list of function
+ * pointers each of which is called after the select call. Tasks add hooks to
+ * these lists by registering themselves to the scheduler.
  */
 struct sched {
        /** initial value before any pre_select call */
  */
 struct sched {
        /** initial value before any pre_select call */
@@ -94,6 +96,5 @@ extern struct timeval *now;
 void register_task(struct task *t);
 void unregister_task(struct task *t);
 int sched(struct sched *s);
 void register_task(struct task *t);
 void unregister_task(struct task *t);
 int sched(struct sched *s);
-void init_sched(void);
 char *get_task_list(void);
 int kill_task(char *id);
 char *get_task_list(void);
 int kill_task(char *id);
diff --git a/write.c b/write.c
index 56b4401a53e3c418a250505d2e188cf7ce61da19..66cdd7f0c6f15870e5af6752f67b9e395bb749be 100644 (file)
--- a/write.c
+++ b/write.c
@@ -214,7 +214,6 @@ int main(int argc, char *argv[])
 
        cmdline_parser(argc, argv, &conf);
        init_supported_writers();
 
        cmdline_parser(argc, argv, &conf);
        init_supported_writers();
-       init_sched();
 
        wng = check_args();
        if (!wng)
 
        wng = check_args();
        if (!wng)