net.c: Fix a doxygen warning and trivial coding style cleanups.
[paraslash.git] / stdout.h
index f02483d1d9b286d3421b55d94e171952c7b33f50..ee4f35ff924350d53db5360ffa8c889e30d00549 100644 (file)
--- a/stdout.h
+++ b/stdout.h
@@ -1,11 +1,27 @@
+/*
+ * Copyright (C) 2006-2007 Andre Noll <maan@systemlinux.org>
+ *
+ * Licensed under the GPL v2. For licencing details see COPYING.
+ */
+
+/** \file stdout.h The standard out task structure. */
+
+/**
+ * The task structure used for writing to stdout.
+ */
 struct stdout_task {
+       /** Pointer to the data buffer. */
        char *buf;
-       size_t *bufsize;
+       /** Number of bytes loaded in \a buf. */
        size_t *loaded;
-       int *eof;
+       /** Üointer to the eof flag of the feeding task. */
+       int *input_eof;
+       /** Non-zero if a write error occured. */
+       int eof;
+       /** The task structure. */
        struct task task;
+       /** Whether \p STDOUT_FILENO was included in the write fd set. */
        int check_fd;
 };
 
-void stdout_pre_select(struct sched *s, struct task *t);
-void stdout_post_select(struct sched *s, struct task *t);
+void stdout_set_defaults(struct stdout_task *sot);