aboutsummaryrefslogtreecommitdiff
path: root/util.h
blob: 8f0fa7b54aa208fd0220eb8551d4ff9a887d4a8c (plain)
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
26
27
28
29
30
31
32
33
/* util.h
 * Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 *
 * Logging and other utility functions.
 */

#ifndef _UTIL_H_
#define _UTIL_H_

#include <stdlib.h>
#include <syslog.h>

#define die(_msg, ...) do { \
        syslog(LOG_ERR, "libminijail: " _msg, ## __VA_ARGS__); \
        abort(); \
} while (0)

#define pdie(_msg, ...) \
        die(_msg ": %s", ## __VA_ARGS__, strerror(errno))

#define warn(_msg, ...) \
        syslog(LOG_WARNING, "libminijail: " _msg, ## __VA_ARGS__)

#define info(_msg, ...) \
        syslog(LOG_INFO, "libminijail: " _msg, ## __VA_ARGS__)

int lookup_syscall(const char *name);
const char *lookup_syscall_name(int nr);
char *strip(char *s);

#endif /* _UTIL_H_ */