osx_write.c: fix pre_select()
[paraslash.git] / stdout.h
1 /*
2  * Copyright (C) 2006 Andre Noll <maan@systemlinux.org>
3  *
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  *
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  *
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 /** \file stdout.h the stdout task structure and exported symbols from stdout.c */
20
21 /**
22  * the task structure used for writing to stdout
23  */
24 struct stdout_task {
25         /** pointer to the data buffer */
26         char *buf;
27         /** the size of \a buf */
28         size_t *bufsize;
29         /** number of bytes loaded in \a buf */
30         size_t *loaded;
31         /** pointer to the eof flag of the feeding task */
32         int *input_eof;
33         /** non-zero if a write error occured */
34         int eof;
35         /** the task structure */
36         struct task task;
37         /** whether \p STDOUT_FILENO was included in the write fd set */
38         int check_fd;
39 };
40
41 void stdout_pre_select(struct sched *s, struct task *t);
42 void stdout_post_select(struct sched *s, struct task *t);
43 void stdout_set_defaults(struct stdout_task *sot);