diff options
author | jkoshy <jkoshy@FreeBSD.org> | 2007-11-14 04:48:58 +0000 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 2007-11-14 04:48:58 +0000 |
commit | 6d4e69c926bbfd0c409e17a54f1f3dfde357f5a0 (patch) | |
tree | 45acfaf983894aed13de0bdba5a648792555d632 | |
parent | 7ed74e55f5cd97003c0d9dabda1fb29b50b3a448 (diff) | |
download | FreeBSD-src-6d4e69c926bbfd0c409e17a54f1f3dfde357f5a0.zip FreeBSD-src-6d4e69c926bbfd0c409e17a54f1f3dfde357f5a0.tar.gz |
Reserve a bit for use when capturing callchains.
-rw-r--r-- | sys/sys/proc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 8274342..8e0b90e 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -372,6 +372,7 @@ do { \ #define TDP_WAKEUP 0x00080000 /* Don't sleep in umtx cond_wait */ #define TDP_INBDFLUSH 0x00100000 /* Already in BO_BDFLUSH, do not recurse */ #define TDP_KTHREAD 0x00200000 /* This is an official kernel thread */ +#define TDP_CALLCHAIN 0x00400000 /* Capture thread's callchain */ /* * Reasons that the current thread can not be run yet. |