1 /****************************************************************************
7 ** This header file defines the debug macros used in pthreads. To turn
8 ** debugging on, add -DDEBUG_PT to CFLAGS. It was added to the original
9 ** distribution of linuxthreads.
11 ** This program is free software; you can redistribute it and/or
12 ** modify it under the terms of the GNU Library General Public License
13 ** as published by the Free Software Foundation; either version 2
14 ** of the License, or (at your option) any later version.
16 ** This program is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ** GNU Library General Public License for more details.
21 ****************************************************************************/
32 /* define the PDEBUG macro here */
35 # define PDEBUG(fmt, args...) __pthread_message("%s: " fmt, __FUNCTION__, ## args)
37 # define PDEBUG(fmt, args...) /* debug switched off */
40 #endif /* _PT_DEBUG_H */