Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/cycles/util/util_system.cpp')
-rw-r--r--intern/cycles/util/util_system.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/intern/cycles/util/util_system.cpp b/intern/cycles/util/util_system.cpp
index fc6db1f6662..a79829a3dd9 100644
--- a/intern/cycles/util/util_system.cpp
+++ b/intern/cycles/util/util_system.cpp
@@ -22,6 +22,9 @@
#include <numaapi.h>
+#include <OpenImageIO/sysutil.h>
+OIIO_NAMESPACE_USING
+
#ifdef _WIN32
# if(!defined(FREE_WINDOWS))
# include <intrin.h>
@@ -329,6 +332,25 @@ bool system_cpu_support_avx2()
#endif
+bool system_call_self(const vector<string>& args)
+{
+ /* Escape program and arguments in case they contain spaces. */
+ string cmd = "\"" + Sysutil::this_program_path() + "\"";
+
+ for(int i = 0; i < args.size(); i++) {
+ cmd += " \"" + args[i] + "\"";
+ }
+
+ /* Quiet output. */
+#ifdef _WIN32
+ cmd += " > nul";
+#else
+ cmd += " > /dev/null";
+#endif
+
+ return (system(cmd.c_str()) == 0);
+}
+
size_t system_physical_ram()
{
#ifdef _WIN32