delete erroneously added code by merge
authorWoongsuk Cho <ws77.cho@samsung.com>
Fri, 10 Aug 2018 04:37:01 +0000 (13:37 +0900)
committer조웅석/Tizen Platform Lab(SR)/Staff Engineer/삼성전자 <ws77.cho@samsung.com>
Thu, 6 Sep 2018 01:22:00 +0000 (10:22 +0900)
Change-Id: I19f8b1023d61b900506c33887e071987e12e4919

NativeLauncher/launcher/dotnet/dotnet_launcher.cc

index ced9782..07854e8 100644 (file)
@@ -149,15 +149,7 @@ static void onSigabrt(int signum)
                        write(2, "Fail to raise SIGABRT\n", 22);
                }
        } else {
-               write(2, "SIGABRT from native. raise SIGABRT\n", 35);
-               checkOnSigabrt = true;
-               if (sigaction(SIGABRT, &sig_abrt_old, NULL) == 0) {
-                       if (raise(signum) < 0) {
-                               write(2, "Fail to raise SIGABRT\n", 22);
-                       }
-               } else {
-                       write(2, "Fail to set original SIGABRT handler\n", 37);
-               }
+               write(2, "Fail to set original SIGABRT handler\n", 37);
        }
 }