Home
last modified time | relevance | path

Searched refs:_module (Results 1 – 1 of 1) sorted by relevance

/sys/include/
Dkassert.h28 #define Alert(_module, _format, ...) kprintf(#_module ": " _format, ##__VA_ARGS__) argument
30 #define Warning(_module, _format, ...) kprintf(#_module ": " _format, ##__VA_ARGS__) argument
32 #define Log(_module, _format, ...) \ argument
33 if (SYSCTL_GETINT(log_##_module) >= 1) { \
34 kprintf(#_module ": " _format, ##__VA_ARGS__); \
37 #define DLOG(_module, _format, ...) \ argument
38 if (SYSCTL_GETINT(log_##_module) >= 5) { \
39 kprintf(#_module ": " _format, ##__VA_ARGS__); \
42 #define VLOG(_module, _format, ...) \ argument
43 if (SYSCTL_GETINT(log_##_module) >= 10) { \
[all …]