blob: 90d4b829b05ef0d545b21a9f44f401633215bc62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// SPDX-License-Identifier: GPL-3.0-or-later
#ifndef NETDATA_POPEN_H
#define NETDATA_POPEN_H 1
#include "../libnetdata.h"
#define PIPE_READ 0
#define PIPE_WRITE 1
extern FILE *mypopen(const char *command, volatile pid_t *pidptr);
extern FILE *mypopene(const char *command, volatile pid_t *pidptr, char **env);
extern int mypclose(FILE *fp, pid_t pid);
extern void signals_unblock(void);
extern void signals_reset(void);
#endif /* NETDATA_POPEN_H */
|