source: MondoRescue/branches/3.2/mondo/src/include/mr_sys.h@ 3509

Last change on this file since 3509 was 3509, checked in by Bruno Cornec, 8 years ago
  • Change mr_msg_int interface by adding the FUNCTION macro
  • Use mr_msg in mr_system
  • Ability to use that new log system everywhere now
  • Property svn:eol-style set to native
File size: 634 bytes
Line 
1/*
2 * $Id$
3 *
4 * Header file of mr_sys: a set of function manipulating system
5 * Provided under the GPL v2
6 */
7
8#ifndef MR_SYS_H
9#define MR_SYS_H
10
11#ifndef _GNU_SOURCE
12#define _GNU_SOURCE
13#endif
14#include <stdarg.h>
15#include <stdio.h>
16#include "mr_msg.h"
17
18/* Internal function bringing debuging info
19 * called indirectly through macros */
20extern inline int mr_system_int(int line, char *file, const char *fmt, ...);
21
22/* functions (public methods) */
23#define mr_system(y,args...) mr_system_int(__LINE__,__FILE__,y,## args)
24
25/* Global variables */
26
27extern int mr_loglevel;
28extern char *mr_logfile;
29
30#endif /* MR_SYS_H */
Note: See TracBrowser for help on using the repository browser.