diff options
author | Ben Becker <ben.becker@10gen.com> | 2012-02-27 10:34:18 -0800 |
---|---|---|
committer | Ben Becker <ben.becker@10gen.com> | 2012-02-27 10:34:18 -0800 |
commit | d1de28e30396b4f7489f2b9513e979448729d29c (patch) | |
tree | a0016d58cf7c5d5175e794e7fc5ea37172f187b3 /src/mongo/util/goodies.h | |
parent | f31ebbd79b7976b6b11124a42ed8b7f461b36b27 (diff) | |
download | mongo-d1de28e30396b4f7489f2b9513e979448729d29c.tar.gz |
SERVER-4985: use 64-bit integer for connection and thread id.
Diffstat (limited to 'src/mongo/util/goodies.h')
-rw-r--r-- | src/mongo/util/goodies.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/goodies.h b/src/mongo/util/goodies.h index f4745fecfa7..06a6a03879c 100644 --- a/src/mongo/util/goodies.h +++ b/src/mongo/util/goodies.h @@ -30,7 +30,7 @@ namespace mongo { * @return if this name has an increasing counter associated, return the value * otherwise 0 */ - unsigned setThreadName(const char * name); + long long setThreadName(const char * name); string getThreadName(); template<class T> |