From patchwork Sat Jan 6 01:34:02 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 856317 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-88885-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="fKHWQMsr"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3zD3wn4C5Mz9sNw for ; Sat, 6 Jan 2018 12:34:17 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=VExlL16DohBIBnaSoYTuDNFwUarRmNVwqeBWKCqzq8iE89kwTn5fB 1GngDSSd8PqyEKMWxUeVnGifVg/IJmkB/gCEcO0WbPHwZwTWe6EzObcm0FjPOCos 3SLUy2xNjVepwVk4fy/CAwsGouP2qvoF/v0AxvfL+xwt3O7l9vd0ug= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; s=default; bh=AYvWJ42r8pzuAADHrOIBPlLo7ws=; b=fKHWQMsrLtUuD5jWCyHspvl0RU2O Poco7WEZixc2nevzykhLCy/5DjOSW4omIaIUayy+DxKbUGqw5iEcyfKlWma0eKq5 rKCv1H2Ow6vH+9tZCaXjKbFMSJ/YpuYe2XQMQny8wElnoKliH2B5XbobLzOyOenZ e2vah+alZ60GVps= Received: (qmail 72597 invoked by alias); 6 Jan 2018 01:34:11 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 72570 invoked by uid 89); 6 Jan 2018 01:34:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_NEUTRAL autolearn=ham version=3.3.2 spammy= X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault Subject: [hurd,commited] hurd: Add jmp_buf-macros.h Date: Sat, 6 Jan 2018 02:34:02 +0100 Message-Id: <20180106013402.20421-1-samuel.thibault@ens-lyon.org> * sysdeps/mach/hurd/i386/jmp_buf-macros.h: New file. --- ChangeLog | 4 ++++ sysdeps/mach/hurd/i386/jmp_buf-macros.h | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 sysdeps/mach/hurd/i386/jmp_buf-macros.h diff --git a/ChangeLog b/ChangeLog index 7a09e8e44a..8833b1da33 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2018-01-06 Samuel Thibault + + * sysdeps/mach/hurd/i386/jmp_buf-macros.h: New file. + 2018-01-05 Tulio Magno Quites Machado Filho * sysdeps/powerpc/powerpc64/dl-machine.c (_dl_reloc_overflow): diff --git a/sysdeps/mach/hurd/i386/jmp_buf-macros.h b/sysdeps/mach/hurd/i386/jmp_buf-macros.h new file mode 100644 index 0000000000..834f5fb243 --- /dev/null +++ b/sysdeps/mach/hurd/i386/jmp_buf-macros.h @@ -0,0 +1,6 @@ +#define JMP_BUF_SIZE 32 +#define SIGJMP_BUF_SIZE 32 +#define JMP_BUF_ALIGN 4 +#define SIGJMP_BUF_ALIGN 4 +#define MASK_WAS_SAVED_OFFSET 24 +#define SAVED_MASK_OFFSET 28