server.c: Check return value of signal().
[paraslash.git] / stdin.c
diff --git a/stdin.c b/stdin.c
index 8b18c2e2cef6c54975cde07285fd68207334d63b..649d464b485142263c768dbfb4698519d3c5aee2 100644 (file)
--- a/stdin.c
+++ b/stdin.c
@@ -1,23 +1,15 @@
 /*
  * Copyright (C) 2006 Andre Noll <maan@systemlinux.org>
  *
- *     This program is free software; you can redistribute it and/or modify
- *     it under the terms of the GNU General Public License as published by
- *     the Free Software Foundation; either version 2 of the License, or
- *     (at your option) any later version.
- *
- *     This program is distributed in the hope that it will be useful,
- *     but WITHOUT ANY WARRANTY; without even the implied warranty of
- *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *     GNU General Public License for more details.
- *
- *     You should have received a copy of the GNU General Public License
- *     along with this program; if not, write to the Free Software
- *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Licensed under the GPL v2. For licencing details see COPYING.
  */
 
 /** \file stdin.c functions that deal with reading from stdin */
 
+#include <dirent.h> /* readdir() */
+#include <assert.h>
+
+
 #include "para.h"
 #include "string.h"
 #include "list.h"
@@ -36,7 +28,7 @@
  * 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)
+static void stdin_pre_select(struct sched *s, struct task *t)
 {
        struct stdin_task *sit = t->private_data;
        t->ret = 1;
@@ -64,7 +56,7 @@ static void stdin_default_event_handler(struct task *t)
  * appeears to be readable, data is read from stdin into the buffer of the
  * stdin task.
  */
-void stdin_post_select(struct sched *s, struct task *t)
+static void stdin_post_select(struct sched *s, struct task *t)
 {
        struct stdin_task *sit = t->private_data;
        ssize_t ret;
@@ -87,12 +79,12 @@ void stdin_post_select(struct sched *s, struct task *t)
 }
 
 /**
- * initialize a stdin task structure with default values
+ * Initialize a stdin task structure with default values.
  *
- * \param sit the stdin task structure
+ * \param sit The stdin task structure.
  *
  * This fills in the pre/post select function poinzters of the task structure
- * given by \a sot. It also sets up a default error handler which unregisters
+ * given by \a sit. It also sets up a default error handler which unregisters
  * the task. Moreover, \a loaded and \a eof are set to zero and \a bufsize is
  * initialized to 16 KB (but no buffer is allocated).
  */
@@ -105,6 +97,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);
+       mark_fd_nonblocking(STDIN_FILENO);
        sprintf(sit->task.status, "stdin reader");
 }