about summary refs log tree commit diff
path: root/signal
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2024-01-01 10:12:26 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2024-01-01 10:53:40 -0800
commitdff8da6b3e89b986bb7f6b1ec18cf65d5972e307 (patch)
tree09151f6e3abfe04e677d62d685088a16c23e7dcf /signal
parentcf9481724bcb86ad4a86cca7befed74bb9cc15eb (diff)
downloadglibc-dff8da6b3e89b986bb7f6b1ec18cf65d5972e307.tar.gz
glibc-dff8da6b3e89b986bb7f6b1ec18cf65d5972e307.tar.xz
glibc-dff8da6b3e89b986bb7f6b1ec18cf65d5972e307.zip
Update copyright dates with scripts/update-copyrights
Diffstat (limited to 'signal')
-rw-r--r--signal/Makefile2
-rw-r--r--signal/allocrtsig.c2
-rw-r--r--signal/bits/types/__sigval_t.h2
-rw-r--r--signal/bits/types/struct_sigstack.h2
-rw-r--r--signal/kill.c2
-rw-r--r--signal/killpg.c2
-rw-r--r--signal/libc_sigaction.c2
-rw-r--r--signal/raise.c2
-rw-r--r--signal/sigaction.c2
-rw-r--r--signal/sigaddset.c2
-rw-r--r--signal/sigaltstack.c2
-rw-r--r--signal/sigandset.c2
-rw-r--r--signal/sigblock.c2
-rw-r--r--signal/sigdelset.c2
-rw-r--r--signal/sigempty.c2
-rw-r--r--signal/sigfillset.c2
-rw-r--r--signal/siggetmask.c2
-rw-r--r--signal/sighold.c2
-rw-r--r--signal/sigignore.c2
-rw-r--r--signal/sigintr.c2
-rw-r--r--signal/sigisempty.c2
-rw-r--r--signal/sigismem.c2
-rw-r--r--signal/signal.c2
-rw-r--r--signal/signal.h2
-rw-r--r--signal/sigorset.c2
-rw-r--r--signal/sigpause.c2
-rw-r--r--signal/sigpending.c2
-rw-r--r--signal/sigprocmask.c2
-rw-r--r--signal/sigqueue.c2
-rw-r--r--signal/sigrelse.c2
-rw-r--r--signal/sigreturn.c2
-rw-r--r--signal/sigset.c2
-rw-r--r--signal/sigsetmask.c2
-rw-r--r--signal/sigsetops.c2
-rw-r--r--signal/sigstack.c2
-rw-r--r--signal/sigsuspend.c2
-rw-r--r--signal/sigtimedwait.c2
-rw-r--r--signal/sigvec.c2
-rw-r--r--signal/sigwait.c2
-rw-r--r--signal/sigwaitinfo.c2
-rw-r--r--signal/sysv_signal.c2
-rw-r--r--signal/tst-minsigstksz-1.c2
-rw-r--r--signal/tst-minsigstksz-2.c2
-rw-r--r--signal/tst-minsigstksz-3.c2
-rw-r--r--signal/tst-minsigstksz-3a.c2
-rw-r--r--signal/tst-minsigstksz-4.c2
-rw-r--r--signal/tst-minsigstksz-5.c2
-rw-r--r--signal/tst-raise.c2
-rw-r--r--signal/tst-sigaction.c2
-rw-r--r--signal/tst-sigisemptyset.c2
-rw-r--r--signal/tst-sigsimple.c2
-rw-r--r--signal/tst-sigwait-eintr.c2
52 files changed, 52 insertions, 52 deletions
diff --git a/signal/Makefile b/signal/Makefile
index b3d16b79dc..e8e3dce0cf 100644
--- a/signal/Makefile
+++ b/signal/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1991-2023 Free Software Foundation, Inc.
+# Copyright (C) 1991-2024 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/allocrtsig.c b/signal/allocrtsig.c
index 52640b98c5..1803ba1532 100644
--- a/signal/allocrtsig.c
+++ b/signal/allocrtsig.c
@@ -1,5 +1,5 @@
 /* Handle real-time signal allocation.  Generic version.
-   Copyright (C) 1997-2023 Free Software Foundation, Inc.
+   Copyright (C) 1997-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/bits/types/__sigval_t.h b/signal/bits/types/__sigval_t.h
index 520e38211a..6f21325e95 100644
--- a/signal/bits/types/__sigval_t.h
+++ b/signal/bits/types/__sigval_t.h
@@ -1,5 +1,5 @@
 /* Define __sigval_t.
-   Copyright (C) 1997-2023 Free Software Foundation, Inc.
+   Copyright (C) 1997-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/bits/types/struct_sigstack.h b/signal/bits/types/struct_sigstack.h
index 19242bafc3..5cf48c31fb 100644
--- a/signal/bits/types/struct_sigstack.h
+++ b/signal/bits/types/struct_sigstack.h
@@ -1,5 +1,5 @@
 /* Define struct sigstack.
-   Copyright (C) 1998-2023 Free Software Foundation, Inc.
+   Copyright (C) 1998-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/kill.c b/signal/kill.c
index 79aa9c2890..2f301fbff3 100644
--- a/signal/kill.c
+++ b/signal/kill.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/killpg.c b/signal/killpg.c
index 678afa8d9b..c20f6fedf7 100644
--- a/signal/killpg.c
+++ b/signal/killpg.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/libc_sigaction.c b/signal/libc_sigaction.c
index 8317e76548..51ca4fd5f6 100644
--- a/signal/libc_sigaction.c
+++ b/signal/libc_sigaction.c
@@ -1,5 +1,5 @@
 /* Internal sigaction definitions.
-   Copyright (C) 2021-2023 Free Software Foundation, Inc.
+   Copyright (C) 2021-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/raise.c b/signal/raise.c
index 4b0915c528..965f1a07de 100644
--- a/signal/raise.c
+++ b/signal/raise.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigaction.c b/signal/sigaction.c
index 3a49597c61..811062ae96 100644
--- a/signal/sigaction.c
+++ b/signal/sigaction.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigaddset.c b/signal/sigaddset.c
index bf1b12bab6..96ac7c0b4b 100644
--- a/signal/sigaddset.c
+++ b/signal/sigaddset.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigaltstack.c b/signal/sigaltstack.c
index c389021d1e..8108e01a95 100644
--- a/signal/sigaltstack.c
+++ b/signal/sigaltstack.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1992-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigandset.c b/signal/sigandset.c
index b4dbe97cf9..a68b87e92e 100644
--- a/signal/sigandset.c
+++ b/signal/sigandset.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigblock.c b/signal/sigblock.c
index a025d6b793..ffdc7b536e 100644
--- a/signal/sigblock.c
+++ b/signal/sigblock.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigdelset.c b/signal/sigdelset.c
index 34687c470f..7ee48e0028 100644
--- a/signal/sigdelset.c
+++ b/signal/sigdelset.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigempty.c b/signal/sigempty.c
index e9c2e80d1f..1d263c105d 100644
--- a/signal/sigempty.c
+++ b/signal/sigempty.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigfillset.c b/signal/sigfillset.c
index b849e0c093..18fa2835bb 100644
--- a/signal/sigfillset.c
+++ b/signal/sigfillset.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/siggetmask.c b/signal/siggetmask.c
index 80a8be1e17..bb2616af4f 100644
--- a/signal/siggetmask.c
+++ b/signal/siggetmask.c
@@ -1,5 +1,5 @@
 /* siggetmask -- useless alias for `sigblock (0)' for old Linux compatibility.
-   Copyright (C) 1996-2023 Free Software Foundation, Inc.
+   Copyright (C) 1996-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sighold.c b/signal/sighold.c
index a1f4e7ed02..ae6b98b844 100644
--- a/signal/sighold.c
+++ b/signal/sighold.c
@@ -1,5 +1,5 @@
 /* Add SIG to the calling process' signal mask.
-   Copyright (C) 1998-2023 Free Software Foundation, Inc.
+   Copyright (C) 1998-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigignore.c b/signal/sigignore.c
index 8caa581e66..2f6b2edf7b 100644
--- a/signal/sigignore.c
+++ b/signal/sigignore.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigintr.c b/signal/sigintr.c
index eb8410c8f8..8f598060e6 100644
--- a/signal/sigintr.c
+++ b/signal/sigintr.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1992-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigisempty.c b/signal/sigisempty.c
index 2bce169033..281b92e716 100644
--- a/signal/sigisempty.c
+++ b/signal/sigisempty.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigismem.c b/signal/sigismem.c
index 2704c7a857..34e6bd4f7c 100644
--- a/signal/sigismem.c
+++ b/signal/sigismem.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/signal.c b/signal/signal.c
index 4957a043c5..9e328e975b 100644
--- a/signal/signal.c
+++ b/signal/signal.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/signal.h b/signal/signal.h
index aff6c06045..f37499ce60 100644
--- a/signal/signal.h
+++ b/signal/signal.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigorset.c b/signal/sigorset.c
index 50ed2f0bc7..a058239849 100644
--- a/signal/sigorset.c
+++ b/signal/sigorset.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigpause.c b/signal/sigpause.c
index 6bc5dfe713..784c18837d 100644
--- a/signal/sigpause.c
+++ b/signal/sigpause.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigpending.c b/signal/sigpending.c
index 451eb00b1e..ab06742d6b 100644
--- a/signal/sigpending.c
+++ b/signal/sigpending.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigprocmask.c b/signal/sigprocmask.c
index 5c21e4b40c..fb6e4e997d 100644
--- a/signal/sigprocmask.c
+++ b/signal/sigprocmask.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigqueue.c b/signal/sigqueue.c
index 0fc4ab80d9..2d0a68e9c4 100644
--- a/signal/sigqueue.c
+++ b/signal/sigqueue.c
@@ -1,5 +1,5 @@
 /* Implementation of sigqueue function from POSIX.1b.
-   Copyright (C) 1997-2023 Free Software Foundation, Inc.
+   Copyright (C) 1997-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigrelse.c b/signal/sigrelse.c
index 8b65dacb0a..3a2ad88447 100644
--- a/signal/sigrelse.c
+++ b/signal/sigrelse.c
@@ -1,5 +1,5 @@
 /* Remove SIG from the calling process' signal mask.
-   Copyright (C) 1998-2023 Free Software Foundation, Inc.
+   Copyright (C) 1998-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigreturn.c b/signal/sigreturn.c
index 69627703ee..7a8dff5163 100644
--- a/signal/sigreturn.c
+++ b/signal/sigreturn.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1992-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigset.c b/signal/sigset.c
index 3578b879b1..d69ce0a5da 100644
--- a/signal/sigset.c
+++ b/signal/sigset.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigsetmask.c b/signal/sigsetmask.c
index d2cf1bcb52..3353f1f96c 100644
--- a/signal/sigsetmask.c
+++ b/signal/sigsetmask.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigsetops.c b/signal/sigsetops.c
index 25fa386603..460227f7c1 100644
--- a/signal/sigsetops.c
+++ b/signal/sigsetops.c
@@ -1,5 +1,5 @@
 /* Compatibility symbols for old versions of signal.h.
-   Copyright (C) 2017-2023 Free Software Foundation, Inc.
+   Copyright (C) 2017-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigstack.c b/signal/sigstack.c
index b1193e6145..46ebd70482 100644
--- a/signal/sigstack.c
+++ b/signal/sigstack.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigsuspend.c b/signal/sigsuspend.c
index 5a0bc2d293..133ad71590 100644
--- a/signal/sigsuspend.c
+++ b/signal/sigsuspend.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigtimedwait.c b/signal/sigtimedwait.c
index 36d5bf1edc..90ecba0bc3 100644
--- a/signal/sigtimedwait.c
+++ b/signal/sigtimedwait.c
@@ -1,5 +1,5 @@
 /* Implementation of sigtimedwait function from POSIX.1b.
-   Copyright (C) 1997-2023 Free Software Foundation, Inc.
+   Copyright (C) 1997-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigvec.c b/signal/sigvec.c
index b28754cb36..f98fa25d8e 100644
--- a/signal/sigvec.c
+++ b/signal/sigvec.c
@@ -1,5 +1,5 @@
 /* ABI compatibility for obsolete sigvec function from 4.2BSD.
-   Copyright (C) 1991-2023 Free Software Foundation, Inc.
+   Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigwait.c b/signal/sigwait.c
index 8468281e0c..ef2c95a2c0 100644
--- a/signal/sigwait.c
+++ b/signal/sigwait.c
@@ -1,5 +1,5 @@
 /* sigwait - implementation of sigwait function from POSIX.1c.
-   Copyright (C) 1996-2023 Free Software Foundation, Inc.
+   Copyright (C) 1996-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sigwaitinfo.c b/signal/sigwaitinfo.c
index 41cb24d0e7..7263970c45 100644
--- a/signal/sigwaitinfo.c
+++ b/signal/sigwaitinfo.c
@@ -1,5 +1,5 @@
 /* Implementation of sigwaitinfo function from POSIX.1b.
-   Copyright (C) 1997-2023 Free Software Foundation, Inc.
+   Copyright (C) 1997-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/sysv_signal.c b/signal/sysv_signal.c
index 57e52a9e3e..77c84862fd 100644
--- a/signal/sysv_signal.c
+++ b/signal/sysv_signal.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-minsigstksz-1.c b/signal/tst-minsigstksz-1.c
index c97479b8a1..edd165a1f3 100644
--- a/signal/tst-minsigstksz-1.c
+++ b/signal/tst-minsigstksz-1.c
@@ -1,5 +1,5 @@
 /* Tests of signal delivery on an alternate stack (nonlethal).
-   Copyright (C) 2019-2023 Free Software Foundation, Inc.
+   Copyright (C) 2019-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-minsigstksz-2.c b/signal/tst-minsigstksz-2.c
index 67f58b696d..1d91de0a79 100644
--- a/signal/tst-minsigstksz-2.c
+++ b/signal/tst-minsigstksz-2.c
@@ -1,5 +1,5 @@
 /* Tests of signal delivery on an alternate stack (abort).
-   Copyright (C) 2019-2023 Free Software Foundation, Inc.
+   Copyright (C) 2019-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-minsigstksz-3.c b/signal/tst-minsigstksz-3.c
index 78fceb1354..becb972d94 100644
--- a/signal/tst-minsigstksz-3.c
+++ b/signal/tst-minsigstksz-3.c
@@ -1,5 +1,5 @@
 /* Tests of signal delivery on an alternate stack (_Exit).
-   Copyright (C) 2019-2023 Free Software Foundation, Inc.
+   Copyright (C) 2019-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-minsigstksz-3a.c b/signal/tst-minsigstksz-3a.c
index 807b9a7eff..75cb7f4199 100644
--- a/signal/tst-minsigstksz-3a.c
+++ b/signal/tst-minsigstksz-3a.c
@@ -1,5 +1,5 @@
 /* Tests of signal delivery on an alternate stack (_exit).
-   Copyright (C) 2019-2023 Free Software Foundation, Inc.
+   Copyright (C) 2019-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-minsigstksz-4.c b/signal/tst-minsigstksz-4.c
index 055259e801..cb3cd5d62f 100644
--- a/signal/tst-minsigstksz-4.c
+++ b/signal/tst-minsigstksz-4.c
@@ -1,5 +1,5 @@
 /* Tests of signal delivery on an alternate stack (quick_exit).
-   Copyright (C) 2019-2023 Free Software Foundation, Inc.
+   Copyright (C) 2019-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-minsigstksz-5.c b/signal/tst-minsigstksz-5.c
index 918ecf42cb..633ea17a15 100644
--- a/signal/tst-minsigstksz-5.c
+++ b/signal/tst-minsigstksz-5.c
@@ -1,5 +1,5 @@
 /* Test of signal delivery on an alternate stack with MINSIGSTKSZ size.
-   Copyright (C) 2020-2023 Free Software Foundation, Inc.
+   Copyright (C) 2020-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-raise.c b/signal/tst-raise.c
index 4880e9ee59..9ecead72d0 100644
--- a/signal/tst-raise.c
+++ b/signal/tst-raise.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003-2023 Free Software Foundation, Inc.
+/* Copyright (C) 2003-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-sigaction.c b/signal/tst-sigaction.c
index 117e45d50a..2cf685afb4 100644
--- a/signal/tst-sigaction.c
+++ b/signal/tst-sigaction.c
@@ -1,5 +1,5 @@
 /* Test sigaction regression for BZ #23069.
-   Copyright (C) 2018-2023 Free Software Foundation, Inc.
+   Copyright (C) 2018-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-sigisemptyset.c b/signal/tst-sigisemptyset.c
index 9b3c2fba9a..f5e35e8c22 100644
--- a/signal/tst-sigisemptyset.c
+++ b/signal/tst-sigisemptyset.c
@@ -1,5 +1,5 @@
 /* Tests for sigisemptyset/sigorset/sigandset.
-   Copyright (C) 2020-2023 Free Software Foundation, Inc.
+   Copyright (C) 2020-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-sigsimple.c b/signal/tst-sigsimple.c
index 7a584abc2a..57114ca7dc 100644
--- a/signal/tst-sigsimple.c
+++ b/signal/tst-sigsimple.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003-2023 Free Software Foundation, Inc.
+/* Copyright (C) 2003-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
diff --git a/signal/tst-sigwait-eintr.c b/signal/tst-sigwait-eintr.c
index a322125deb..020a2c25e7 100644
--- a/signal/tst-sigwait-eintr.c
+++ b/signal/tst-sigwait-eintr.c
@@ -1,5 +1,5 @@
 /* Check that sigwait does not fail with EINTR (bug 22478).
-   Copyright (C) 2017-2023 Free Software Foundation, Inc.
+   Copyright (C) 2017-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or