From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1118) id C32173858C20; Sat, 1 Oct 2022 20:09:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C32173858C20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1664654965; bh=oO4yrupReAwaqnTLRYBA7E44u5X5vP+S+IYqi0l/i2A=; h=From:To:Subject:Date:From; b=c387OHeYFC2JJ8BSoS/m5wEDZgkUrIPnJhJudq6YZVaxxDMhsmNzrVVCQVUAoJILQ NW9OIgLUDoGIXRpivrL8BxtXyst0oRUDoKJ4jfxH2QZF4gW0pc/mfKxJTT3PDZI830 ldHcmtraPgDcD+4zWWortXyLGuzNhZQ4p6TuaxHU= 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.36/master] hppa: undef __ASSUME_SET_ROBUST_LIST X-Act-Checkin: glibc X-Git-Author: John David Anglin X-Git-Refname: refs/heads/release/2.36/master X-Git-Oldrev: d1d8379bff34f02f86f82db2cef5bf66746d3560 X-Git-Newrev: cdc496eb55e30f8f2461bedb0a7381c0a7a3d3ae Message-Id: <20221001200925.C32173858C20@sourceware.org> Date: Sat, 1 Oct 2022 20:09:25 +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