We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 696b237 + a1f6e5d commit 4c066b3Copy full SHA for 4c066b3
lib/NativeCode/DynamicLibraryLoaderHelper/NativeRender/include/Config/PlatformConfig.hpp
@@ -224,6 +224,13 @@ namespace pew::eos::config
224
}
225
else if (name == "threadAffinity")
226
{
227
+ if (value.payload == 0)
228
+ {
229
+ // A payload of 0 means that threadAffinity should be null
230
+ // Don't set it in this case
231
+ return;
232
+ }
233
+
234
const auto thread_affinity_json_object = *static_cast<json_object_s*>(value.payload);
235
auto thread_affinity_iterator = thread_affinity_json_object.start;
236
0 commit comments