blob: d50ce59e3d9ef5983a60de6e69e93127b469b72b (
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
34
35
36
37
38
39
40
41
42
|
// SPDX-License-Identifier: GPL-2.0
/*
* AVIRT - ALSA Virtual Soundcard
*
* Copyright (c) 2010-2018 Fiberdyne Systems Pty Ltd
*
* utils.h - Some useful macros/utils for AVIRT
*/
#ifndef __SOUND_AVIRT_UTILS_H
#define __SOUND_AVIRT_UTILS_H
#define CHK_ERR(errno) \
do { \
if ((errno) < 0) \
return (errno); \
} while (0)
#define CHK_ERR_V(errno, fmt, args...) \
do { \
if ((errno) < 0) { \
DERROR(D_LOGNAME, "" fmt, ##args); \
return (errno); \
} \
} while (0)
#define CHK_NULL(x) \
do { \
if (!(x)) \
return -EFAULT; \
} while (0)
#define CHK_NULL_V(x, fmt, args...) \
do { \
if (!(x)) { \
DERROR(D_LOGNAME, "[ERRNO: %d] " fmt, -EFAULT, \
##args); \
return -EFAULT; \
} \
} while (0)
#endif /* __SOUND_AVIRT_UTILS_H */
|