From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1118) id 469C2385841F; Tue, 20 Sep 2022 20:15:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 469C2385841F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1663704905; bh=EPdjaqud3GmNXvKKPrW8a39w8rR+vb5esBGI5I+Fv68=; h=From:To:Subject:Date:From; b=n3+OjS+XoKhun6bIHCl8PskLVYvdoFjrw/drnRCDcSGxxTvou2CTkPyzo46WK5nut x2qhNacyhkidJ8GRf3YqU/ozrBEd8z8RS3lJQSky3ge5hQWzXgUo2fNUdObyLYDlDJ G2Ezh9XRuVmfcKmVHL4Xn9fJFsyqV45jehqhzySE= 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] hppa: undef __ASSUME_SET_ROBUST_LIST X-Act-Checkin: glibc X-Git-Author: John David Anglin X-Git-Refname: refs/heads/master X-Git-Oldrev: 85a322874404d1a13e9d628b8bc44120cabf7e12 X-Git-Newrev: fa47e8e6df0ef43289d344a85b8587e8a0a1c663 Message-Id: <20220920201505.469C2385841F@sourceware.org> Date: Tue, 20 Sep 2022 20:15:05 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=fa47e8e6df0ef43289d344a85b8587e8a0a1c663 commit fa47e8e6df0ef43289d344a85b8587e8a0a1c663 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