mirror of
https://review.haiku-os.org/haiku
synced 2025-02-03 04:07:18 +01:00
90e3bbf0cb
destination of the message and it's "what" field are stored. It might be nice to also get some info about its fields -- maybe as an additional option. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23810 a95241bf-73f2-0310-859d-f6bbb57e9c96
26 lines
506 B
C
26 lines
506 B
C
#ifndef KERNEL_TRACING_CONFIG_H
|
|
#define KERNEL_TRACING_CONFIG_H
|
|
|
|
// general settings
|
|
|
|
// enable tracing (0/1)
|
|
#ifndef ENABLE_TRACING
|
|
# define ENABLE_TRACING 0
|
|
#endif
|
|
|
|
// tracing buffer size (in bytes)
|
|
#ifndef MAX_TRACE_SIZE
|
|
# define MAX_TRACE_SIZE (1024 * 1024)
|
|
#endif
|
|
|
|
|
|
// macros that enable tracing for individual components
|
|
|
|
//#define BLOCK_CACHE_TRANSACTION_TRACING
|
|
//#define SIGNAL_TRACING
|
|
//#define SYSCALL_TRACING
|
|
//#define TEAM_TRACING
|
|
//#define BMESSAGE_TRACING
|
|
|
|
#endif // KERNEL_TRACING_CONFIG_H
|