From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1944) id B70C5385150D; Wed, 26 Oct 2022 15:08:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B70C5385150D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666796900; bh=oO4yrupReAwaqnTLRYBA7E44u5X5vP+S+IYqi0l/i2A=; h=From:To:Subject:Date:From; b=udSUusvfdSxj8E3+8YyX2GfjJvz30A7iIwz+83h11nGGQqciJH+yb1eicuf8wHFzI z9cOA8rcMk2cktd0T//gClcyrqAvhyqx22IKbwQw1thrXeB1gtD1Tf3t3t0kZMiIqQ YGCiPDrcydlJGVwQLf6FM4Df4yUIM52gnBBGvPV8= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Szabolcs Nagy To: glibc-cvs@sourceware.org Subject: [glibc/arm/morello/main] hppa: undef __ASSUME_SET_ROBUST_LIST X-Act-Checkin: glibc X-Git-Author: John David Anglin X-Git-Refname: refs/heads/arm/morello/main X-Git-Oldrev: d1d8379bff34f02f86f82db2cef5bf66746d3560 X-Git-Newrev: cdc496eb55e30f8f2461bedb0a7381c0a7a3d3ae Message-Id: <20221026150820.B70C5385150D@sourceware.org> Date: Wed, 26 Oct 2022 15:08:20 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=cdc496eb55e30f8f2461bedb0a7381c0a7a3d3ae commit cdc496eb55e30f8f2461bedb0a7381c0a7a3d3ae Author: John David Anglin Date: Tue Sep 20 20:14:14 2022 +0000 hppa: undef __ASSUME_SET_ROBUST_LIST QEMU does not support support set_robust_list. Thus, we need to enable detection of set_robust_list system call. Signed-off-by: John David Anglin Diff: --- sysdeps/unix/sysv/linux/hppa/kernel-features.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sysdeps/unix/sysv/linux/hppa/kernel-features.h b/sysdeps/unix/sysv/linux/hppa/kernel-features.h index 0cd21ef0fa..079612e4aa 100644 --- a/sysdeps/unix/sysv/linux/hppa/kernel-features.h +++ b/sysdeps/unix/sysv/linux/hppa/kernel-features.h @@ -30,3 +30,6 @@ #undef __ASSUME_CLONE_DEFAULT #define __ASSUME_CLONE_BACKWARDS 1 + +/* QEMU does not support set_robust_list. */ +#undef __ASSUME_SET_ROBUST_LIST