summaryrefslogtreecommitdiffstats
path: root/include/sys/debug.h
blob: 4a6ed5c3d7c8ed041673dadd34581757a3a282e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SPL_DEBUG_H
#define _SPL_DEBUG_H

extern unsigned long spl_debug_mask;
extern unsigned long spl_debug_subsys;

void __dprintf(const char *file, const char *func, int line, const char *fmt, ...);
void spl_set_debug_mask(unsigned long mask);
void spl_set_debug_subsys(unsigned long mask);

#endif /* SPL_DEBUG_H */