Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F32558228
D5112.1767263587.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
962 B
Referenced Files
None
Subscribers
None
D5112.1767263587.diff
View Options
diff --git a/services/lib/src/GlobalTools.h b/services/lib/src/GlobalTools.h
--- a/services/lib/src/GlobalTools.h
+++ b/services/lib/src/GlobalTools.h
@@ -13,6 +13,8 @@
bool hasEnvFlag(const std::string &flag);
+size_t getNumberOfCores();
+
std::string decorateTableName(const std::string &baseName);
bool isSandbox();
diff --git a/services/lib/src/GlobalTools.cpp b/services/lib/src/GlobalTools.cpp
--- a/services/lib/src/GlobalTools.cpp
+++ b/services/lib/src/GlobalTools.cpp
@@ -10,6 +10,8 @@
#include <iomanip>
#include <regex>
#include <string>
+#include <thread>
+#include <algorithm>
namespace comm {
namespace network {
@@ -28,6 +30,10 @@
return std::string(std::getenv(flag.c_str())) == "1";
}
+size_t getNumberOfCores() {
+ return (size_t)std::max(1u, std::thread::hardware_concurrency());
+}
+
std::string decorateTableName(const std::string &baseName) {
std::string suffix = "";
if (hasEnvFlag("COMM_TEST_SERVICES")) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jan 1, 10:33 AM (1 h, 36 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5875803
Default Alt Text
D5112.1767263587.diff (962 B)
Attached To
Mode
D5112: [services] Rust Integration - c++ - Add getNumberOfCores
Attached
Detach File
Event Timeline
Log In to Comment