1 /* SPDX-License-Identifier: GPL-2.0 */ << 2 #ifndef __API_DEBUG_INTERNAL_H__ 1 #ifndef __API_DEBUG_INTERNAL_H__ 3 #define __API_DEBUG_INTERNAL_H__ 2 #define __API_DEBUG_INTERNAL_H__ 4 3 5 #include "debug.h" 4 #include "debug.h" 6 5 7 #define __pr(func, fmt, ...) \ 6 #define __pr(func, fmt, ...) \ 8 do { \ 7 do { \ 9 if ((func)) \ 8 if ((func)) \ 10 (func)("libapi: " fmt, ##__VA_ 9 (func)("libapi: " fmt, ##__VA_ARGS__); \ 11 } while (0) 10 } while (0) 12 11 13 extern libapi_print_fn_t __pr_warn; !! 12 extern libapi_print_fn_t __pr_warning; 14 extern libapi_print_fn_t __pr_info; 13 extern libapi_print_fn_t __pr_info; 15 extern libapi_print_fn_t __pr_debug; 14 extern libapi_print_fn_t __pr_debug; 16 15 17 #define pr_warn(fmt, ...) __pr(__pr_warn !! 16 #define pr_warning(fmt, ...) __pr(__pr_warning, fmt, ##__VA_ARGS__) 18 #define pr_info(fmt, ...) __pr(__pr_info 17 #define pr_info(fmt, ...) __pr(__pr_info, fmt, ##__VA_ARGS__) 19 #define pr_debug(fmt, ...) __pr(__pr_debu 18 #define pr_debug(fmt, ...) __pr(__pr_debug, fmt, ##__VA_ARGS__) 20 19 21 #endif /* __API_DEBUG_INTERNAL_H__ */ 20 #endif /* __API_DEBUG_INTERNAL_H__ */ 22 21
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.