diff options
author | Eliot Horowitz <eliot@10gen.com> | 2012-05-16 18:22:48 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2012-05-16 18:22:48 -0400 |
commit | 63b3df2c1c704ae7ae58d3f559e626c5eefea26f (patch) | |
tree | be23b0eb62516918f88c70597ed4ba23e01f1a0c /src/mongo/util/stacktrace.h | |
parent | 93d01b1aacfdc983cfdc6465d3c1d7b4ef3fde94 (diff) | |
download | mongo-63b3df2c1c704ae7ae58d3f559e626c5eefea26f.tar.gz |
move stack introspection to its own file
Diffstat (limited to 'src/mongo/util/stacktrace.h')
-rw-r--r-- | src/mongo/util/stacktrace.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/mongo/util/stacktrace.h b/src/mongo/util/stacktrace.h index b2103dc4f9a..d4c9f014959 100644 --- a/src/mongo/util/stacktrace.h +++ b/src/mongo/util/stacktrace.h @@ -13,18 +13,4 @@ namespace mongo { // Print stack trace information to "os", default to std::cout. void printStackTrace(std::ostream &os=std::cout); - /** - * checks up call tree - * if any method on top of me is a constructor, return true - * may do internal caching - * probably slow, use with care - * if not implemented for a platform, returns false - */ - bool inConstructorChain( bool printOffending=false ); - - /** - * @return if supported on platform, compile options may still prevent it from working - */ - bool inConstructorChainSupported(); - } // namespace mongo |