2010-08-07 18:05:16 +02:00
|
|
|
/*
|
|
|
|
* i3bar - an xcb-based status- and ws-bar for i3
|
|
|
|
*
|
|
|
|
* © 2010 Axel Wagner and contributors
|
|
|
|
*
|
|
|
|
* See file LICNSE for license information
|
|
|
|
*
|
|
|
|
*/
|
2010-08-05 05:09:59 +02:00
|
|
|
#ifndef CHILD_H_
|
|
|
|
#define CHILD_H_
|
|
|
|
|
|
|
|
#define STDIN_CHUNK_SIZE 1024
|
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
/*
|
|
|
|
* Start a child-process with the specified command and reroute stdin.
|
|
|
|
* We actually start a $SHELL to execute the command so we don't have to care
|
|
|
|
* about arguments and such
|
|
|
|
*
|
|
|
|
*/
|
2010-08-05 05:09:59 +02:00
|
|
|
void start_child(char *command);
|
2010-08-07 02:10:05 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* kill()s the child-prozess (if existend) and closes and
|
|
|
|
* free()s the stdin- and sigchild-watchers
|
|
|
|
*
|
|
|
|
*/
|
2010-08-05 05:09:59 +02:00
|
|
|
void kill_child();
|
|
|
|
|
2010-08-25 18:31:03 +02:00
|
|
|
/*
|
|
|
|
* Sends a SIGSTOP to the child-process (if existent)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void stop_child();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sends a SIGCONT to the child-process (if existent)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void cont_child();
|
|
|
|
|
2010-08-05 05:09:59 +02:00
|
|
|
#endif
|