From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1118) id 9EF513858C20; Sat, 1 Oct 2022 20:09:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9EF513858C20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1664654997; bh=2wBF2NPmPItENIeB3JRuIr5rxCTflz9/BaUCOkfn0TM=; h=From:To:Subject:Date:From; b=XPPXt9Guea4t1CyZ23JGpRGZcssyspE0wKr6xR8KM1lEoCo330TXyOC0WoRJzYhEU cMHrvkx8F8Y5Vg8bFVHbgxxTXfPRdUUV97RRdaBiGOGOFwyLSp4dtrKq0yKP8vrVeB 7PYYrKKmqaMhgsltp69m+0Evpe/2TQsYiaDqmI0o= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: John David Anglin To: glibc-cvs@sourceware.org Subject: [glibc/release/2.35/master] hppa: undef __ASSUME_SET_ROBUST_LIST X-Act-Checkin: glibc X-Git-Author: John David Anglin X-Git-Refname: refs/heads/release/2.35/master X-Git-Oldrev: 562e5b2821f5751e5c4304169572014c5a52e6d6 X-Git-Newrev: a6d2e2c19289451bf15b1a1904fc36a052bd42fe Message-Id: <20221001200957.9EF513858C20@sourceware.org> Date: Sat, 1 Oct 2022 20:09:57 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=a6d2e2c19289451bf15b1a1904fc36a052bd42fe commit a6d2e2c19289451bf15b1a1904fc36a052bd42fe 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