From afdd4690fc3dfa6b5b89ec7795870d8becf416ba Mon Sep 17 00:00:00 2001 From: Jim Warner Date: Sat, 1 Jan 2022 00:00:00 -0600 Subject: [PATCH] misc: amend the man page & source file copyright dates This just updates the copyright dates in the documents where I was already represented. Others are unchanged. Signed-off-by: Jim Warner --- doc/procps.3 | 4 ++-- doc/procps_misc.3 | 4 ++-- doc/procps_pids.3 | 4 ++-- proc/diskstats.c | 2 +- proc/diskstats.h | 2 +- proc/escape.c | 2 +- proc/escape.h | 20 ++++++++++++++++++++ proc/meminfo.c | 2 +- proc/meminfo.h | 2 +- proc/misc.h | 2 +- proc/numa.c | 2 +- proc/numa.h | 2 +- proc/pids.c | 2 +- proc/pids.h | 2 +- proc/slabinfo.c | 2 +- proc/slabinfo.h | 2 +- proc/stat.c | 2 +- proc/stat.h | 2 +- proc/vmstat.c | 2 +- proc/vmstat.h | 2 +- proc/xtra-procps-debug.h | 2 +- top/top.1 | 4 ++-- top/top.c | 2 +- top/top.h | 2 +- top/top_nls.c | 2 +- top/top_nls.h | 2 +- 26 files changed, 49 insertions(+), 29 deletions(-) diff --git a/doc/procps.3 b/doc/procps.3 index 3798d3d6..ffc8d2fc 100644 --- a/doc/procps.3 +++ b/doc/procps.3 @@ -1,4 +1,4 @@ -.\" (C) Copyright 2020-2021 Jim Warner +.\" (C) Copyright 2020-2022 Jim Warner .\" .\" %%%LICENSE_START(LGPL_2.1+) .\" This manual is free software; you can redistribute it and/or @@ -16,7 +16,7 @@ .\" Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA .\" %%%LICENSE_END .\" -.TH PROCPS 3 "February 2021" "libproc-2" +.TH PROCPS 3 "January 2022" "libproc-2" .\" Please adjust this date whenever revising the manpage. .\" .nh diff --git a/doc/procps_misc.3 b/doc/procps_misc.3 index 8cb12f5d..792899ae 100644 --- a/doc/procps_misc.3 +++ b/doc/procps_misc.3 @@ -1,5 +1,5 @@ .\" (C) Copyright 2020 Craig Small -.\" (C) Copyright 2021 Jim Warner +.\" (C) Copyright 2021-2022 Jim Warner .\" .\" %%%LICENSE_START(LGPL_2.1+) .\" This manual is free software; you can redistribute it and/or @@ -17,7 +17,7 @@ .\" Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA .\" %%%LICENSE_END .\" -.TH PROCPS_MISC 3 "February 2021" "libproc-2" +.TH PROCPS_MISC 3 "January 2022" "libproc-2" .\" Please adjust this date whenever revising the manpage. .\" .nh diff --git a/doc/procps_pids.3 b/doc/procps_pids.3 index 2a91cc88..d06ee2dd 100644 --- a/doc/procps_pids.3 +++ b/doc/procps_pids.3 @@ -1,4 +1,4 @@ -.\" (C) Copyright 2020-2021 Jim Warner +.\" (C) Copyright 2020-2022 Jim Warner .\" .\" %%%LICENSE_START(LGPL_2.1+) .\" This manual is free software; you can redistribute it and/or @@ -16,7 +16,7 @@ .\" Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA .\" %%%LICENSE_END .\" -.TH PROCPS_PIDS 3 "February 2021" "libproc-2" +.TH PROCPS_PIDS 3 "January 2022" "libproc-2" .\" Please adjust this date whenever revising the manpage. .\" .nh diff --git a/proc/diskstats.c b/proc/diskstats.c index c47dfad7..37aa81ce 100644 --- a/proc/diskstats.c +++ b/proc/diskstats.c @@ -4,7 +4,7 @@ * Copyright (C) 2003 Fabian Frederick * Copyright (C) 2003 Albert Cahalan * Copyright (C) 2015 Craig Small - * Copyright (C) 2016-2021 Jim Warner + * Copyright (C) 2016-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/diskstats.h b/proc/diskstats.h index ad2e224b..94ac4705 100644 --- a/proc/diskstats.h +++ b/proc/diskstats.h @@ -4,7 +4,7 @@ * Copyright (c) 2003 Fabian Frederick * Copyright (C) 2003 Albert Cahalan * Copyright (C) 2015 Craig Small - * Copyright (C) 2016-2021 Jim Warner + * Copyright (C) 2016-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/escape.c b/proc/escape.c index 3f5d3422..834602c3 100644 --- a/proc/escape.c +++ b/proc/escape.c @@ -1,7 +1,7 @@ /* * escape.c - printing handling * Copyright 1998-2002 by Albert Cahalan - * Copyright 2020 Jim Warner + * Copyright 2020-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/escape.h b/proc/escape.h index b55c48b6..8ae5f812 100644 --- a/proc/escape.h +++ b/proc/escape.h @@ -1,3 +1,23 @@ +/* + * escape.h - printing handling + * Copyright 1998-2002 by Albert Cahalan + * Copyright 2020-2022 Jim Warner + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #ifndef PROCPS_PROC_ESCAPE_H #define PROCPS_PROC_ESCAPE_H diff --git a/proc/meminfo.c b/proc/meminfo.c index 79e7fe19..e304f0f5 100644 --- a/proc/meminfo.c +++ b/proc/meminfo.c @@ -2,7 +2,7 @@ * meminfo.c - memory related definitions for libprocps * * Copyright (C) 2015 Craig Small - * Copyright (C) 2016-2021 Jim Warner + * Copyright (C) 2016-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/meminfo.h b/proc/meminfo.h index d60e263c..0f3d0076 100644 --- a/proc/meminfo.h +++ b/proc/meminfo.h @@ -2,7 +2,7 @@ * meminfo.h - memory related declarations for libprocps * * Copyright (C) 2015 Craig Small - * Copyright (C) 2016-2021 Jim Warner + * Copyright (C) 2016-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/misc.h b/proc/misc.h index 0f05cc9d..e677214e 100644 --- a/proc/misc.h +++ b/proc/misc.h @@ -8,7 +8,7 @@ * Copyright 1996 Charles Blake * Copyright 1998-2003 Albert Cahalan * Copyright 2015 Craig Small - * Copyright 2021 Jim Warner + * Copyright 2021-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/numa.c b/proc/numa.c index 10a34521..80039e25 100644 --- a/proc/numa.c +++ b/proc/numa.c @@ -1,6 +1,6 @@ /* * NUMA node support for & interfaces - * Copyright 2017 by James C. Warmer + * Copyright 2017-2022 by James C. Warmer * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/numa.h b/proc/numa.h index 00113ea9..08b98554 100644 --- a/proc/numa.h +++ b/proc/numa.h @@ -1,6 +1,6 @@ /* * NUMA node support for & interfaces - * Copyright 2017 by James C. Warmer + * Copyright 2017-2022 by James C. Warmer * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/pids.c b/proc/pids.c index 88fe1462..fee4109a 100644 --- a/proc/pids.c +++ b/proc/pids.c @@ -3,7 +3,7 @@ * * Copyright (C) 1998-2005 Albert Cahalan * Copyright (C) 2015 Craig Small - * Copyright (C) 2015-2021 Jim Warner + * Copyright (C) 2015-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/pids.h b/proc/pids.h index 6d897d5d..4331c5ec 100644 --- a/proc/pids.h +++ b/proc/pids.h @@ -3,7 +3,7 @@ * * Copyright (C) 1998-2005 Albert Cahalan * Copyright (C) 2015 Craig Small - * Copyright (C) 2015-2021 Jim Warner + * Copyright (C) 2015-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/slabinfo.c b/proc/slabinfo.c index bc048eef..cc006c01 100644 --- a/proc/slabinfo.c +++ b/proc/slabinfo.c @@ -4,7 +4,7 @@ * Copyright (C) 2003 Chris Rivera * Copyright (C) 2004 Albert Cahalan * Copyright (C) 2015 Craig Small - * Copyright (C) 2016-2021 Jim Warnerl + * Copyright (C) 2016-2022 Jim Warnerl * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/slabinfo.h b/proc/slabinfo.h index 2a28a01b..0649b31a 100644 --- a/proc/slabinfo.h +++ b/proc/slabinfo.h @@ -3,7 +3,7 @@ * * Copyright (C) 1998-2005 Albert Cahalan * Copyright (C) 2015 Craig Small - * Copyright (C) 2016-2021 Jim Warnerl + * Copyright (C) 2016-2022 Jim Warnerl * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/stat.c b/proc/stat.c index 8ce6f5c7..147a4224 100644 --- a/proc/stat.c +++ b/proc/stat.c @@ -2,7 +2,7 @@ * stat.c - cpu/numa related definitions for libprocps * * Copyright (C) 2015 Craig Small - * Copyright (C) 2015-2021 Jim Warner + * Copyright (C) 2015-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/stat.h b/proc/stat.h index 4de6e129..f4b6f75a 100644 --- a/proc/stat.h +++ b/proc/stat.h @@ -2,7 +2,7 @@ * stat.h - cpu/numa related declarations for libprocps * * Copyright (C) 2015 Craig Small - * Copyright (C) 2015-2021 Jim Warner + * Copyright (C) 2015-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/vmstat.c b/proc/vmstat.c index 7256cf09..fa6359ab 100644 --- a/proc/vmstat.c +++ b/proc/vmstat.c @@ -5,7 +5,7 @@ * Copyright (C) 1996 Charles Blake * Copyright (C) 2003 Albert Cahalan * Copyright (C) 2015 Craig Small - * Copyright (C) 2016-2021 Jim Warner + * Copyright (C) 2016-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/vmstat.h b/proc/vmstat.h index dd37e542..b11f9f9f 100644 --- a/proc/vmstat.h +++ b/proc/vmstat.h @@ -5,7 +5,7 @@ * Copyright (C) 1996 Charles Blake * Copyright (C) 2003 Albert Cahalan * Copyright (C) 2015 Craig Small - * Copyright (C) 2016-2021 Jim Warner + * Copyright (C) 2016-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/proc/xtra-procps-debug.h b/proc/xtra-procps-debug.h index fa446540..070a484c 100644 --- a/proc/xtra-procps-debug.h +++ b/proc/xtra-procps-debug.h @@ -1,7 +1,7 @@ /* * libprocps - Library to read proc filesystem * - * Copyright (C) 2016 Jim Warner + * Copyright (C) 2016-2022 Jim Warner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/top/top.1 b/top/top.1 index 91d8f92c..53cbbc1d 100644 --- a/top/top.1 +++ b/top/top.1 @@ -1,7 +1,7 @@ .ig . manual page for NEW and IMPROVED linux top . -. Copyright (c) 2002-2021, by: James C. Warner +. Copyright (c) 2002-2022, by: James C. Warner . . This file may be copied under the terms of the GNU Public License. .. @@ -59,7 +59,7 @@ memory statistics and data for other users requires root privileges . .\" Document ///////////////////////////////////////////////////////////// .\" ---------------------------------------------------------------------- -.TH TOP 1 "September 2021" "procps-ng" "User Commands" +.TH TOP 1 "January 2022" "procps-ng" "User Commands" .\" ---------------------------------------------------------------------- .nh diff --git a/top/top.c b/top/top.c index 2faa963d..f75516a9 100644 --- a/top/top.c +++ b/top/top.c @@ -1,6 +1,6 @@ /* top.c - Source file: show Linux processes */ /* - * Copyright (c) 2002-2021, by: James C. Warner + * Copyright (c) 2002-2022, by: James C. Warner * * This file may be used subject to the terms and conditions of the * GNU Library General Public License Version 2, or any later version diff --git a/top/top.h b/top/top.h index 13cb51f2..a2b8fa95 100644 --- a/top/top.h +++ b/top/top.h @@ -1,6 +1,6 @@ /* top.h - Header file: show Linux processes */ /* - * Copyright (c) 2002-2021, by: James C. Warner + * Copyright (c) 2002-2022, by: James C. Warner * * This file may be used subject to the terms and conditions of the * GNU Library General Public License Version 2, or any later version diff --git a/top/top_nls.c b/top/top_nls.c index 4a91a1da..122327f6 100644 --- a/top/top_nls.c +++ b/top/top_nls.c @@ -1,6 +1,6 @@ /* top_nls.c - provide the basis for future nls translations */ /* - * Copyright (c) 2011-2021, by: James C. Warner + * Copyright (c) 2011-2022, by: James C. Warner * * This file may be used subject to the terms and conditions of the * GNU Library General Public License Version 2, or any later version diff --git a/top/top_nls.h b/top/top_nls.h index e70a0ef4..f970ef4e 100644 --- a/top/top_nls.h +++ b/top/top_nls.h @@ -1,6 +1,6 @@ /* top_nls.h - provide the basis for future nls translations */ /* - * Copyright (c) 2011-2021, by: James C. Warner + * Copyright (c) 2011-2022, by: James C. Warner * * This file may be used subject to the terms and conditions of the * GNU Library General Public License Version 2, or any later version