]> git.sur5r.net Git - i3/i3/blob - i3bar/include/child.h
normalize file headers across **/*.{h,c}
[i3/i3] / i3bar / include / child.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3bar - an xcb-based status- and ws-bar for i3
5  * © 2010-2011 Axel Wagner and contributors (see also: LICENSE)
6  *
7  * child.c: Getting Input for the statusline
8  *
9  */
10 #ifndef CHILD_H_
11 #define CHILD_H_
12
13 #define STDIN_CHUNK_SIZE 1024
14
15 /*
16  * Start a child-process with the specified command and reroute stdin.
17  * We actually start a $SHELL to execute the command so we don't have to care
18  * about arguments and such
19  *
20  */
21 void start_child(char *command);
22
23 /*
24  * kill()s the child-prozess (if existend) and closes and
25  * free()s the stdin- and sigchild-watchers
26  *
27  */
28 void kill_child();
29
30 /*
31  * Sends a SIGSTOP to the child-process (if existent)
32  *
33  */
34 void stop_child();
35
36 /*
37  * Sends a SIGCONT to the child-process (if existent)
38  *
39  */
40 void cont_child();
41
42 #endif