Assorted typo fixes in comments.
[paraslash.git] / stdin.h
diff --git a/stdin.h b/stdin.h
index 9213bf4623dbe0179b53ca81dd125f1d2a4ed197..952d48093b271d0835c5bbc7836c3cee601f562e 100644 (file)
--- a/stdin.h
+++ b/stdin.h
@@ -1,9 +1,23 @@
+/*
+ * Copyright (C) 2006-2014 Andre Noll <maan@tuebingen.mpg.de>
+ *
+ * Licensed under the GPL v2. For licencing details see COPYING.
+ */
+
+/** \file stdin.h The standard in task structure. */
+
+/** The task structure used for reading from stdin. */
 struct stdin_task {
-       char *buf;
-       size_t bufsize;
-       size_t loaded;
-       struct task task;
+       /** The task structure. */
+       struct task *task;
+       /** Stdin is always the root of a buffer tree. */
+       struct btr_node *btrn;
+       /** Use a buffer pool to minimize memcpy due to alignment problems. */
+       struct btr_pool *btrp;
+       /** The descriptor flags of STDIN at startup. */
+       int fd_flags;
+       /** Whether we have to set STDIN to nonblocking mode. */
+       bool must_set_nonblock_flag;
 };
 
-void stdin_pre_select(struct sched *s, struct task *t);
-void stdin_post_select(struct sched *s, struct task *t);
+void stdin_task_register(struct stdin_task *sit, struct sched *s);