#include <stdio.h>
#include <string.h>
Go to the source code of this file.
◆ critical_error
#define critical_error |
( |
|
fmt, |
|
|
|
args... |
|
) |
| |
Value: do { \
fprintf(stderr,
"critical error: %s: " fmt "\n", __func__, ##args); \
} while (0)
jmp_buf setjmp_env
Definition: ext4_utils.cpp:45
◆ critical_error_errno
#define critical_error_errno |
( |
|
s, |
|
|
|
args... |
|
) |
| critical_error(s ": %s", ##args, strerror(errno)) |
◆ error
#define error |
( |
|
fmt, |
|
|
|
args... |
|
) |
| |
Value: do { \
fprintf(stderr,
"error: %s: " fmt "\n", __func__, ##args); \
} while (0)
int force
Definition: ext4_utils.cpp:41
◆ error_errno
#define error_errno |
( |
|
s, |
|
|
|
args... |
|
) |
| error(s ": %s", ##args, strerror(errno)) |
◆ warn
#define warn |
( |
|
fmt, |
|
|
|
args... |
|
) |
| |
Value: do { \
fprintf(stderr,
"warning: %s: " fmt "\n", __func__, ##args); \
} while (0)