]> git.ipfire.org Git - thirdparty/util-linux.git/blame - include/debugobj.h
login: reduce file-descriptors cleanup overhead
[thirdparty/util-linux.git] / include / debugobj.h
CommitLineData
6d00cfb2
KZ
1#ifndef UTIL_LINUX_DEBUGOBJ_H
2#define UTIL_LINUX_DEBUGOBJ_H
3
4/*
5 * Include *after* debug.h and after UL_DEBUG_CURRENT_MASK define.
6 */
7
8static inline void __attribute__ ((__format__ (__printf__, 2, 3)))
9ul_debugobj(const void *handler, const char *mesg, ...)
10{
11 va_list ap;
12
13 if (handler && !(UL_DEBUG_CURRENT_MASK & __UL_DEBUG_FL_NOADDR))
14 fprintf(stderr, "[%p]: ", handler);
15
16 va_start(ap, mesg);
17 vfprintf(stderr, mesg, ap);
18 va_end(ap);
19 fputc('\n', stderr);
20}
21
22#endif /* UTIL_LINUX_DEBUGOBJ_H */