}
PARA_EMERG_LOG("terminating on signal %d\n", signum);
shutdown:
- sched_shutdown(s);
+ task_notify_all(s, E_AFS_SIGNAL);
t->error = -E_AFS_SIGNAL;
}
struct afs_client *client, *tmp;
int fd, ret;
+ ret = task_get_notification(t);
+ if (ret < 0) {
+ t->error = ret;
+ return;
+ }
ret = execute_server_command(&s->rfds);
if (ret < 0) {
PARA_EMERG_LOG("%s\n", para_strerror(-ret));
- sched_shutdown(s);
+ task_notify_all(s, -ret);
+ t->error = ret;
return;
}
/* Check the list of connected clients. */
t->notification = 0;
if (t->error >= 0)
continue;
- /*
- * We have to check whether the list is empty because the call
- * to ->post_select() might have called sched_shutdown(). In
- * this case t has been unregistered already, so we must not
- * unregister it again.
- */
- if (list_empty(&s->post_select_list))
- return;
unregister_task(t);
}
}
}
}
-/**
- * Unregister all tasks.
- *
- * \param s The scheduler instance to shut down.
- *
- * This will cause \a schedule() to return immediately because both the
- * \a pre_select_list and the \a post_select_list are empty. This function
- * must be called from the post_select (rather than the pre_select) method.
- */
-void sched_shutdown(struct sched *s)
-{
- struct task *t, *tmp;
-
- list_for_each_entry_safe(t, tmp, &s->pre_select_list, pre_select_node) {
- t->error = -E_SCHED_SHUTDOWN;
- unregister_task(t);
- }
- list_for_each_entry_safe(t, tmp, &s->post_select_list, post_select_node) {
- t->error = -E_SCHED_SHUTDOWN;
- unregister_task(t);
- }
-}
-
/**
* Get the list of all registered tasks.
*
return t->notification;
}
+/**
+ * Set the notification value of all tasks of a scheduler instance.
+ *
+ * \param s The scheduler instance whose tasks should be notified.
+ * \param err A positive error code.
+ *
+ * This simply iterates over all existing tasks of \a s and sets each
+ * task's notification value to \p -err.
+ */
+void task_notify_all(struct sched *s, int err)
+{
+ struct task *t;
+
+ list_for_each_entry(t, &s->pre_select_list, pre_select_node)
+ task_notify(t, err);
+ list_for_each_entry(t, &s->post_select_list, post_select_node)
+ task_notify(t, err);
+}
+
/**
* Set the select timeout to the minimal possible value.
*
int schedule(struct sched *s);
char *get_task_list(struct sched *s);
void task_notify(struct task *t, int err);
-void sched_shutdown(struct sched *s);
+void task_notify_all(struct sched *s, int err);
int task_get_notification(struct task *t);
void sched_min_delay(struct sched *s);
void sched_request_timeout(struct timeval *to, struct sched *s);