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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdeel Mujahid <adeelbm@outlook.com>2020-04-09 02:35:41 +0300
committerGitHub <noreply@github.com>2020-04-09 02:35:41 +0300
commit0510aaa22ba3397e92232e3e9ba91c5df3b62474 (patch)
tree7c45b86175c49a5939ac0bc1e5af0e2d8fe783d2 /src/libraries/Native/Unix/System.Native/pal_signal.c
parentfa81228a4806949dd3858827734762bd9f82cb56 (diff)
Fix build on Clear Linux and Android device (#34211)
* Only skip call to check_pie_supported on Android * Fix native component build for Clear Linux
Diffstat (limited to 'src/libraries/Native/Unix/System.Native/pal_signal.c')
-rw-r--r--src/libraries/Native/Unix/System.Native/pal_signal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libraries/Native/Unix/System.Native/pal_signal.c b/src/libraries/Native/Unix/System.Native/pal_signal.c
index 1467931cf85..66244d1c3be 100644
--- a/src/libraries/Native/Unix/System.Native/pal_signal.c
+++ b/src/libraries/Native/Unix/System.Native/pal_signal.c
@@ -217,6 +217,7 @@ void SystemNative_RegisterForSigChld(SigChldCallback callback)
static void InstallSignalHandler(int sig, bool skipWhenSigIgn)
{
int rv;
+ (void)rv; // only used for assert
struct sigaction* orig = OrigActionFor(sig);
if (skipWhenSigIgn)