kernel - change print*() functions for ipc to generic ipc hook functions.

- used to implement ipc stats tracking code
This commit is contained in:
Ben Gras
2011-02-08 13:54:33 +00:00
parent fa59fc6eb4
commit b2d1109737
5 changed files with 164 additions and 34 deletions

View File

@@ -23,7 +23,6 @@
* are disabled.
*/
#define DEBUG_ENABLE_IPC_WARNINGS 1
#define DEBUG_STACKTRACE 1
/* Sanity checks. */
#define DEBUG_SANITYCHECKS 0
@@ -45,6 +44,13 @@
*/
#define DEBUG_DUMPIPC 0
/* DEBUG_IPCSTATS collects information on who sends messages to whom. */
#define DEBUG_IPCSTATS 0
#if DEBUG_DUMPIPC || DEBUG_IPCSTATS /* either of these needs the hook */
#define DEBUG_IPC_HOOK 1
#endif
#if DEBUG_TRACE
#define VF_SCHEDULING (1L << 1)