1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-05-13 15:13:36 +00:00

sigsegv, sigsegv-tests: Assign my contributions to the FSF.

* lib/sigsegv.in.h: Change copyright notice: Write "Copyright (C) FSF"
instead of "Copyright (C) Bruno Haible".
* lib/sigsegv.c: Likewise.
* lib/stackvma.h: Likewise.
* lib/stackvma.c: Likewise.
* m4/sigaltstack.m4: Likewise.
* m4/stack-direction.m4: Likewise.
* tests/altstack-util.h: Likewise.
* tests/mmap-anon-util.h: Likewise.
* tests/test-sigsegv-catch-segv1.c: Likewise.
* tests/test-sigsegv-catch-segv2.c: Likewise.
* tests/test-sigsegv-catch-stackoverflow1.c: Likewise.
* tests/test-sigsegv-catch-stackoverflow2.c: Likewise.
This commit is contained in:
Bruno Haible
2021-06-19 13:57:53 +02:00
parent fbcf84e542
commit 0647171f08
13 changed files with 54 additions and 14 deletions

View File

@@ -1,3 +1,20 @@
2021-06-19 Bruno Haible <bruno@clisp.org>
sigsegv, sigsegv-tests: Assign my contributions to the FSF.
* lib/sigsegv.in.h: Change copyright notice: Write "Copyright (C) FSF"
instead of "Copyright (C) Bruno Haible".
* lib/sigsegv.c: Likewise.
* lib/stackvma.h: Likewise.
* lib/stackvma.c: Likewise.
* m4/sigaltstack.m4: Likewise.
* m4/stack-direction.m4: Likewise.
* tests/altstack-util.h: Likewise.
* tests/mmap-anon-util.h: Likewise.
* tests/test-sigsegv-catch-segv1.c: Likewise.
* tests/test-sigsegv-catch-segv2.c: Likewise.
* tests/test-sigsegv-catch-stackoverflow1.c: Likewise.
* tests/test-sigsegv-catch-stackoverflow2.c: Likewise.
2021-06-18 Darren Kenny <darren.kenny@oracle.com> (tiny change)
argp: Avoid possible NULL access in argp_help.

View File

@@ -1,5 +1,5 @@
/* Page fault handling library.
Copyright (C) 1993-2021 Bruno Haible <bruno@clisp.org>
Copyright (C) 1993-2021 Free Software Foundation, Inc.
Copyright (C) 2018 Nylon Chen <nylon7@andestech.com>
This program is free software: you can redistribute it and/or modify
@@ -15,6 +15,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible and Nylon Chen. */
#include <config.h>
/* Specification. */

View File

@@ -1,5 +1,5 @@
/* Page fault handling library.
Copyright (C) 1998-2021 Bruno Haible <bruno@clisp.org>
Copyright (C) 1998-2021 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -14,6 +14,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible. */
#ifndef _SIGSEGV_H
#define _SIGSEGV_H

View File

@@ -1,5 +1,5 @@
/* Determine the virtual memory area of a given address.
Copyright (C) 2002-2021 Bruno Haible <bruno@clisp.org>
Copyright (C) 2002-2021 Free Software Foundation, Inc.
Copyright (C) 2003-2006 Paolo Bonzini <bonzini@gnu.org>
This program is free software: you can redistribute it and/or modify
@@ -15,6 +15,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible and Paolo Bonzini. */
#include <config.h>
/* On Solaris in 32-bit mode, when gnulib module 'largefile' is in use,

View File

@@ -1,5 +1,5 @@
/* Determine the virtual memory area of a given address.
Copyright (C) 2002-2021 Bruno Haible <bruno@clisp.org>
Copyright (C) 2002-2021 Free Software Foundation, Inc.
Copyright (C) 2003-2006 Paolo Bonzini <bonzini@gnu.org>
This program is free software: you can redistribute it and/or modify
@@ -15,6 +15,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible and Paolo Bonzini. */
#ifndef _STACKVMA_H
#define _STACKVMA_H

View File

@@ -1,5 +1,5 @@
# sigaltstack.m4 serial 14
dnl Copyright (C) 2002-2021 Bruno Haible <bruno@clisp.org>
# sigaltstack.m4 serial 15
dnl Copyright (C) 2002-2021 Free Software Foundation, Inc.
dnl Copyright (C) 2008 Eric Blake <ebb9@byu.net>
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
@@ -7,6 +7,8 @@ dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl Written by Bruno Haible and Eric Blake.
AC_DEFUN([SV_SIGALTSTACK],
[
AC_REQUIRE([AC_PROG_CC])

View File

@@ -1,5 +1,4 @@
# stack-direction.m4 serial 6
dnl Copyright (C) 2002-2021 Bruno Haible <bruno@clisp.org>
# stack-direction.m4 serial 7
dnl Copyright (C) 2002-2021 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
@@ -7,6 +6,8 @@ dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl Written by Bruno Haible.
# Determine the stack direction. Define the C macro STACK_DIRECTION.
AC_DEFUN([SV_STACK_DIRECTION],
[

View File

@@ -1,6 +1,6 @@
/* Some auxiliary stuff for defining an alternate stack.
Copyright (C) 2010-2021 Free Software Foundation, Inc.
Copyright (C) 2010 Eric Blake <eblake@redhat.com>
Copyright (C) 2010-2021 Bruno Haible <bruno@clisp.org>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -15,6 +15,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Eric Blake and Bruno Haible. */
#include <stdint.h> /* uintptr_t */
#include <string.h> /* for memset */

View File

@@ -1,5 +1,5 @@
/* Some auxiliary stuff for using mmap & friends.
Copyright (C) 2002-2021 Bruno Haible <bruno@clisp.org>
Copyright (C) 2002-2021 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -14,6 +14,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible. */
#if defined _WIN32 && !defined __CYGWIN__
/* ------------------------ Windows ------------------------ */

View File

@@ -1,5 +1,5 @@
/* Test that the handler is called, with the right fault address.
Copyright (C) 2002-2021 Bruno Haible <bruno@clisp.org>
Copyright (C) 2002-2021 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -14,6 +14,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible. */
#include <config.h>
/* Specification. */

View File

@@ -1,5 +1,5 @@
/* Test that the handler can be exited multiple times.
Copyright (C) 2002-2021 Bruno Haible <bruno@clisp.org>
Copyright (C) 2002-2021 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -14,6 +14,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible. */
#include <config.h>
/* Specification. */

View File

@@ -1,5 +1,5 @@
/* Test the stack overflow handler.
Copyright (C) 2002-2021 Bruno Haible <bruno@clisp.org>
Copyright (C) 2002-2021 Free Software Foundation, Inc.
Copyright (C) 2010 Eric Blake <eblake@redhat.com>
This program is free software: you can redistribute it and/or modify
@@ -15,6 +15,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible and Eric Blake. */
#include <config.h>
/* Specification. */

View File

@@ -1,5 +1,5 @@
/* Test that stack overflow and SIGSEGV are correctly distinguished.
Copyright (C) 2002-2021 Bruno Haible <bruno@clisp.org>
Copyright (C) 2002-2021 Free Software Foundation, Inc.
Copyright (C) 2010 Eric Blake <eblake@redhat.com>
This program is free software: you can redistribute it and/or modify
@@ -15,6 +15,8 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible and Eric Blake. */
#include <config.h>
/* Specification. */