expose the affinity mask
[AROS.git] / compiler / pthread / debug.h
blob5cce659b12fe53da65c40e68b86eeaf11207f207
1 /*
2 Copyright (C) 2015 Szilard Biro
4 This software is provided 'as-is', without any express or implied
5 warranty. In no event will the authors be held liable for any damages
6 arising from the use of this software.
8 Permission is granted to anyone to use this software for any purpose,
9 including commercial applications, and to alter it and redistribute it
10 freely, subject to the following restrictions:
12 1. The origin of this software must not be misrepresented; you must not
13 claim that you wrote the original software. If you use this software
14 in a product, an acknowledgment in the product documentation would be
15 appreciated but is not required.
16 2. Altered source versions must be plainly marked as such, and must not be
17 misrepresented as being the original software.
18 3. This notice may not be removed or altered from any source distribution.
21 #ifndef __DLL_DEBUG_H
22 #define __DLL_DEBUG_H
24 #ifdef __AROS__
25 #include <aros/debug.h>
26 #else
27 #ifdef DEBUG
28 #define D(x) x
29 #if DEBUG > 1
30 #define DB2(x) x
31 #else
32 #define DB2(x)
33 #endif
34 #else
35 #define D(x)
36 #define DB2(x)
37 #endif
38 #ifdef __amigaos4__
39 #include <proto/exec.h>
40 #define bug DebugPrintF
41 #else
42 #include <clib/debug_protos.h>
43 #define bug(fmt, ...) kprintf((CONST_STRPTR)fmt, __VA_ARGS__)
44 #endif
45 #endif
47 #endif