aboutsummaryrefslogtreecommitdiffstats
path: root/src/firemon/netstats.c
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-06-20 18:31:12 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-06-27 15:23:22 -0300
commit5106b2ec404d4085cb4f741aeca9f2bdc95878a9 (patch)
tree599ad4edd21adc5eb9f89d1c801f21c6ec710739 /src/firemon/netstats.c
parentgcov: fix indentation (diff)
downloadfirejail-5106b2ec404d4085cb4f741aeca9f2bdc95878a9.tar.gz
firejail-5106b2ec404d4085cb4f741aeca9f2bdc95878a9.tar.zst
firejail-5106b2ec404d4085cb4f741aeca9f2bdc95878a9.zip
gcov: use no-op functions if not enabled
Instead of wrapping every gcov function call in an ifdef. Note: The usage of `((void)0)` is based on section 7.2 of the C99 standard (N1256)[1] [2]: > 7.2 Diagnostics <assert.h> > > 1 The header <assert.h> defines the assert macro and refers to another > macro, > > NDEBUG > > which is not defined by <assert.h>. If NDEBUG is defined as a macro > name at the point in the source file where <assert.h> is included, the > assert macro is defined simply as > > #define assert(ignore) ((void)0) See also assert.h(0p) from POSIX.1-2017[3]. Note: This is a continuation of commit b408b20c7 ("gcov: fix build failure with gcc 11.1.0") / PR #4373. [1] http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf [2] https://port70.net/~nsz/c/c99/n1256.html#7.2 [3] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/assert.h.html
Diffstat (limited to 'src/firemon/netstats.c')
-rw-r--r--src/firemon/netstats.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/firemon/netstats.c b/src/firemon/netstats.c
index 205ad7601..9d8e5d7f5 100644
--- a/src/firemon/netstats.c
+++ b/src/firemon/netstats.c
@@ -18,16 +18,13 @@
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19*/ 19*/
20#include "firemon.h" 20#include "firemon.h"
21#include "../include/gcov_wrapper.h"
21#include <termios.h> 22#include <termios.h>
22#include <sys/ioctl.h> 23#include <sys/ioctl.h>
23#include <sys/types.h> 24#include <sys/types.h>
24#include <sys/stat.h> 25#include <sys/stat.h>
25#include <unistd.h> 26#include <unistd.h>
26 27
27#ifdef HAVE_GCOV
28#include "../include/gcov_wrapper.h"
29#endif
30
31#define MAXBUF 4096 28#define MAXBUF 4096
32 29
33// ip -s link: device stats 30// ip -s link: device stats
@@ -246,8 +243,7 @@ void netstats(void) {
246 print_proc(i, itv, col); 243 print_proc(i, itv, col);
247 } 244 }
248 } 245 }
249#ifdef HAVE_GCOV 246
250 __gcov_flush(); 247 __gcov_flush();
251#endif
252 } 248 }
253} 249}