master
h 14 lines 339 Bytes
Raw
1 // SPDX-License-Identifier: GPL-3.0-or-later
2
3 #ifndef NETDATA_CGROUP_NETIPC_H
4 #define NETDATA_CGROUP_NETIPC_H 1
5
6 #ifdef OS_LINUX
7 void cgroup_netipc_init(void);
8 void cgroup_netipc_cleanup(void);
9 #else
10 static inline void cgroup_netipc_init(void) {}
11 static inline void cgroup_netipc_cleanup(void) {}
12 #endif
13
14 #endif // NETDATA_CGROUP_NETIPC_H