|
| typedef void(* | snd_lib_error_handler_t) (const char *file, int line, const char *function, int err, const char *fmt,...) |
| | Error handler callback. More...
|
| |
Error handling macros and functions.
Lisp encountered an error during acall.
| #define SND_ERROR_BEGIN 500000 |
Lower boundary of sound error codes.
Kernel/library protocols are not compatible.
| #define SNDERR |
( |
|
args... | ) |
snd_lib_error(__FILE__, __LINE__, __func__, 0, ##args) |
Shows a sound error message.
| #define SYSERR |
( |
|
args... | ) |
snd_lib_error(__FILE__, __LINE__, __func__, errno, ##args) |
Shows a system error message (related to errno).
| typedef void(* snd_lib_error_handler_t) (const char *file, int line, const char *function, int err, const char *fmt,...) |
Error handler callback.
- Parameters
-
| file | Source file name. |
| line | Line number. |
| function | Function name. |
| err | Value of errno, or 0 if not relevant. |
| fmt | printf(3) format. |
| ... | printf(3) arguments. |
A function of this type is called by the ALSA library when an error occurs. This function usually shows the message on the screen, and/or logs it.
Sets the error handler.
- Parameters
-
| handler | The pointer to the new error handler function. |
This function sets a new error handler, or (if handler is NULL) the default one which prints the error messages to stderr.
| const char* snd_strerror |
( |
int |
errnum | ) |
|
Pointer to the error handler function. For internal use only.
Pointer to the error handler function. For internal use only.