aboutsummaryrefslogtreecommitdiffstats
path: root/include/gtest/internal
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2009-04-07 21:03:22 +0000
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2009-04-07 21:03:22 +0000
commitc12f63214e9b7761d27e68353e4aaf1761c9cf88 (patch)
tree78dba5344afb37f56eb716fbe75786aab1eb52d9 /include/gtest/internal
parent0da92aaf7f696ebfa2374247ae9010dacbc057fc (diff)
downloadgoogletest-c12f63214e9b7761d27e68353e4aaf1761c9cf88.tar.gz
googletest-c12f63214e9b7761d27e68353e4aaf1761c9cf88.tar.bz2
googletest-c12f63214e9b7761d27e68353e4aaf1761c9cf88.zip
Adds sample4_unittest to scons (by Vlad Losev); adds logic for getting the thread count on Mac (by Vlad Losev); adds HasFailure() and HasNonfatalFailure() (by Zhanyong Wan).
Diffstat (limited to 'include/gtest/internal')
-rw-r--r--include/gtest/internal/gtest-port.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/gtest/internal/gtest-port.h b/include/gtest/internal/gtest-port.h
index 97736314..4267a58f 100644
--- a/include/gtest/internal/gtest-port.h
+++ b/include/gtest/internal/gtest-port.h
@@ -673,9 +673,9 @@ class ThreadLocal {
T value_;
};
-// There's no portable way to detect the number of threads, so we just
-// return 0 to indicate that we cannot detect it.
-inline size_t GetThreadCount() { return 0; }
+// Returns the number of threads running in the process, or 0 to indicate that
+// we cannot detect it.
+size_t GetThreadCount();
// The above synchronization primitives have dummy implementations.
// Therefore Google Test is not thread-safe.