/usr/include/gm_msg.h is in libganglia1-dev 3.3.8-1+nmu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #ifndef GM_MSG_H
#define GM_MSG_H 1
#ifdef __cplusplus
extern "C" {
#endif
extern int ganglia_quiet_errors;
void debug_msg(const char *format, ...);
void set_debug_msg_level(int level);
int get_debug_msg_level();
void err_quiet( void );
void err_ret (const char *fmt, ...);
void err_sys (const char *fmt, ...);
void err_dump (const char *fmt, ...);
void err_msg (const char *fmt, ...);
void err_quit (const char *fmt, ...);
#ifdef __cplusplus
}
#endif
#endif
|