X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=stdin.c;h=8b18c2e2cef6c54975cde07285fd68207334d63b;hp=b86fbbb9a635448a10f6375915fa6620bfb9fc1d;hb=df3c03e72911edb31e7f1e32ebe29dad063e3b70;hpb=95491e280363ddaed05599445138fd8191110dc1 diff --git a/stdin.c b/stdin.c index b86fbbb9..8b18c2e2 100644 --- a/stdin.c +++ b/stdin.c @@ -33,7 +33,7 @@ * \param t the task structure of the stdin task * * This function is always successful. If there is space left in the - * buffer of the stdin task, it adds \a STDIN_FILENO to the read fd set + * buffer of the stdin task, it adds \p STDIN_FILENO to the read fd set * of \a s. */ void stdin_pre_select(struct sched *s, struct task *t) @@ -59,8 +59,8 @@ static void stdin_default_event_handler(struct task *t) * \param s the scheduler this task was registered to * \param t the task structure of the stdin task * - * This function checks if \a STDIN_FILENO was included by in the read fd set - * of \a s during the previous pre_select call. If yes, and STDIN_FILENO + * This function checks if \p STDIN_FILENO was included by in the read fd set + * of \a s during the previous pre_select call. If yes, and \p STDIN_FILENO * appeears to be readable, data is read from stdin into the buffer of the * stdin task. */ @@ -105,5 +105,6 @@ void stdin_set_defaults(struct stdin_task *sit) sit->task.post_select = stdin_post_select; sit->task.event_handler = stdin_default_event_handler; sit->task.private_data = sit; + mark_fd_nonblock(STDIN_FILENO); sprintf(sit->task.status, "stdin reader"); }