From: Igor Kulaychuk Date: Thu, 16 Aug 2018 17:13:59 +0000 (+0300) Subject: Disable debug pipes and semaphores creation in case of non-standlone mode X-Git-Tag: submit/tizen/20180921.083258~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=47fa476210e47c05ab852452c88fb7bce8a99bc7;p=platform%2Fcore%2Fdotnet%2Flauncher.git Disable debug pipes and semaphores creation in case of non-standlone mode Change-Id: I618eaa439ab7cbda7b21809ad2b4f200230292a5 --- diff --git a/NativeLauncher/launcher/dotnet/dotnet_launcher.cc b/NativeLauncher/launcher/dotnet/dotnet_launcher.cc index 07854e8..171607d 100644 --- a/NativeLauncher/launcher/dotnet/dotnet_launcher.cc +++ b/NativeLauncher/launcher/dotnet/dotnet_launcher.cc @@ -271,6 +271,10 @@ int CoreRuntime::initialize(bool standalone) putenv(const_cast("UNW_ARM_UNWIND_METHOD=6")); #endif // __arm__ + // Disable debug pipes and semaphores creation in case of non-standlone mode + if (!standalone) + putenv(const_cast("COMPlus_EnableDiagnostics=0")); + // read string from external file and set them to environment value. setEnvFromFile();