diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2016-03-30 21:40:42 +0000 |
---|---|---|
committer | Federico Ceratto <federico.ceratto@gmail.com> | 2016-03-30 21:40:42 +0000 |
commit | 9ce153ce7167c11adba8ac225edc7a707e97c6eb (patch) | |
tree | 9f6e849cce2dcc7e5b4e9e6252c843dc2d0787a2 /src/popen.h | |
download | netdata-9ce153ce7167c11adba8ac225edc7a707e97c6eb.tar.xz netdata-9ce153ce7167c11adba8ac225edc7a707e97c6eb.zip |
Imported Upstream version 1.0.0upstream/1.0.0
Diffstat (limited to 'src/popen.h')
-rwxr-xr-x | src/popen.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/popen.h b/src/popen.h new file mode 100755 index 000000000..10680f0c8 --- /dev/null +++ b/src/popen.h @@ -0,0 +1,14 @@ +#include <stdio.h> +#include <unistd.h> +#include <sys/types.h> + +#ifndef NETDATA_POPEN_H +#define NETDATA_POPEN_H 1 + +#define PIPE_READ 0 +#define PIPE_WRITE 1 + +extern FILE *mypopen(const char *command, pid_t *pidptr); +extern int mypclose(FILE *fp, pid_t pid); + +#endif /* NETDATA_POPEN_H */ |