aboutsummaryrefslogtreecommitdiff
path: root/malloc
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@sourceware.org>2021-09-03 22:06:44 +0530
committerSiddhesh Poyarekar <siddhesh@sourceware.org>2021-09-03 22:06:44 +0530
commit30891f35fa7da832b66d80d0807610df361851f3 (patch)
tree684c81cc6e88650313797fadaa642d714fcce8a8 /malloc
parent04f2125c6eff341f9c52682866d1eea8d204c852 (diff)
downloadglibc-30891f35fa7da832b66d80d0807610df361851f3.zip
glibc-30891f35fa7da832b66d80d0807610df361851f3.tar.gz
glibc-30891f35fa7da832b66d80d0807610df361851f3.tar.bz2
Remove "Contributed by" lines
We stopped adding "Contributed by" or similar lines in sources in 2012 in favour of git logs and keeping the Contributors section of the glibc manual up to date. Removing these lines makes the license header a bit more consistent across files and also removes the possibility of error in attribution when license blocks or files are copied across since the contributed-by lines don't actually reflect reality in those cases. Move all "Contributed by" and similar lines (Written by, Test by, etc.) into a new file CONTRIBUTED-BY to retain record of these contributions. These contributors are also mentioned in manual/contrib.texi, so we just maintain this additional record as a courtesy to the earlier developers. The following scripts were used to filter a list of files to edit in place and to clean up the CONTRIBUTED-BY file respectively. These were not added to the glibc sources because they're not expected to be of any use in future given that this is a one time task: https://gist.github.com/siddhesh/b5ecac94eabfd72ed2916d6d8157e7dc https://gist.github.com/siddhesh/15ea1f5e435ace9774f485030695ee02 Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'malloc')
-rw-r--r--malloc/arena.c1
-rw-r--r--malloc/hooks.c1
-rw-r--r--malloc/malloc-check.c1
-rw-r--r--malloc/malloc.c2
-rw-r--r--malloc/mcheck-impl.c1
-rw-r--r--malloc/mcheck.c1
-rw-r--r--malloc/memusage.c1
-rwxr-xr-xmalloc/memusage.sh1
-rw-r--r--malloc/memusagestat.c1
-rw-r--r--malloc/mtrace-impl.c2
-rw-r--r--malloc/mtrace.c2
-rw-r--r--malloc/mtrace.pl1
-rw-r--r--malloc/tst-calloc.c1
-rw-r--r--malloc/tst-malloc-check.c1
-rw-r--r--malloc/tst-malloc.c1
-rw-r--r--malloc/tst-mallocstate.c1
-rw-r--r--malloc/tst-obstack.c1
17 files changed, 0 insertions, 20 deletions
diff --git a/malloc/arena.c b/malloc/arena.c
index 6674846..4c39875 100644
--- a/malloc/arena.c
+++ b/malloc/arena.c
@@ -1,7 +1,6 @@
/* Malloc implementation for multiple threads without lock contention.
Copyright (C) 2001-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Wolfram Gloger <wg@malloc.de>, 2001.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License as
diff --git a/malloc/hooks.c b/malloc/hooks.c
index 2761e47..070f01d 100644
--- a/malloc/hooks.c
+++ b/malloc/hooks.c
@@ -1,7 +1,6 @@
/* Compatibility code for malloc debugging and state management.
Copyright (C) 2001-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Wolfram Gloger <wg@malloc.de>, 2001.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License as
diff --git a/malloc/malloc-check.c b/malloc/malloc-check.c
index 8ed67de..4bb0021 100644
--- a/malloc/malloc-check.c
+++ b/malloc/malloc-check.c
@@ -1,7 +1,6 @@
/* glibc.malloc.check implementation.
Copyright (C) 2001-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Wolfram Gloger <wg@malloc.de>, 2001.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License as
diff --git a/malloc/malloc.c b/malloc/malloc.c
index e065785..2ba1fee 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -1,8 +1,6 @@
/* Malloc implementation for multiple threads without lock contention.
Copyright (C) 1996-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Wolfram Gloger <wg@malloc.de>
- and Doug Lea <dl@cs.oswego.edu>, 2001.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License as
diff --git a/malloc/mcheck-impl.c b/malloc/mcheck-impl.c
index 6597a29..729e94c 100644
--- a/malloc/mcheck-impl.c
+++ b/malloc/mcheck-impl.c
@@ -1,7 +1,6 @@
/* mcheck debugging hooks for malloc.
Copyright (C) 1990-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Written May 1989 by Mike Haertel.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
diff --git a/malloc/mcheck.c b/malloc/mcheck.c
index 74c20ff..ed3c39d 100644
--- a/malloc/mcheck.c
+++ b/malloc/mcheck.c
@@ -1,7 +1,6 @@
/* The mcheck() interface.
Copyright (C) 1990-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Written May 1989 by Mike Haertel.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
diff --git a/malloc/memusage.c b/malloc/memusage.c
index 4e57ad3..e99f0c1 100644
--- a/malloc/memusage.c
+++ b/malloc/memusage.c
@@ -1,7 +1,6 @@
/* Profile heap and stack memory usage of running program.
Copyright (C) 1998-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
diff --git a/malloc/memusage.sh b/malloc/memusage.sh
index 0645f09..f93ddca 100755
--- a/malloc/memusage.sh
+++ b/malloc/memusage.sh
@@ -1,7 +1,6 @@
#!/bin/bash
# Copyright (C) 1999-2021 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
-# Contributed by Ulrich Drepper <drepper@gnu.org>, 1999.
# The GNU C Library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/malloc/memusagestat.c b/malloc/memusagestat.c
index 4c823b9..f888168 100644
--- a/malloc/memusagestat.c
+++ b/malloc/memusagestat.c
@@ -1,7 +1,6 @@
/* Generate graphic from memory profiling data.
Copyright (C) 1998-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
diff --git a/malloc/mtrace-impl.c b/malloc/mtrace-impl.c
index f5f19c2..a3db927 100644
--- a/malloc/mtrace-impl.c
+++ b/malloc/mtrace-impl.c
@@ -1,8 +1,6 @@
/* mtrace implementation for `malloc'.
Copyright (C) 1991-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Written April 2, 1991 by John Gilmore of Cygnus Support.
- Based on mcheck.c by Mike Haertel.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
diff --git a/malloc/mtrace.c b/malloc/mtrace.c
index c1c836a..b276e83 100644
--- a/malloc/mtrace.c
+++ b/malloc/mtrace.c
@@ -1,8 +1,6 @@
/* mtrace API for `malloc'.
Copyright (C) 1991-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Written April 2, 1991 by John Gilmore of Cygnus Support.
- Based on mcheck.c by Mike Haertel.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
diff --git a/malloc/mtrace.pl b/malloc/mtrace.pl
index b1073a1..0244d64 100644
--- a/malloc/mtrace.pl
+++ b/malloc/mtrace.pl
@@ -3,7 +3,6 @@ eval "exec @PERL@ -S $0 $@"
if 0;
# Copyright (C) 1997-2021 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
-# Contributed by Ulrich Drepper <drepper@gnu.org>, 1997.
# Based on the mtrace.awk script.
# The GNU C Library is free software; you can redistribute it and/or
diff --git a/malloc/tst-calloc.c b/malloc/tst-calloc.c
index 24a083d..6e06e3c 100644
--- a/malloc/tst-calloc.c
+++ b/malloc/tst-calloc.c
@@ -1,6 +1,5 @@
/* Copyright (C) 2000-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Ulrich Drepper <drepper@redhat.com>.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
diff --git a/malloc/tst-malloc-check.c b/malloc/tst-malloc-check.c
index 6650d09..e00a16e 100644
--- a/malloc/tst-malloc-check.c
+++ b/malloc/tst-malloc-check.c
@@ -1,6 +1,5 @@
/* Copyright (C) 2005-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Jakub Jelinek <jakub@redhat.com>, 2005.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
diff --git a/malloc/tst-malloc.c b/malloc/tst-malloc.c
index a587cbd..396e6f6 100644
--- a/malloc/tst-malloc.c
+++ b/malloc/tst-malloc.c
@@ -1,6 +1,5 @@
/* Copyright (C) 1999-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1999.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
diff --git a/malloc/tst-mallocstate.c b/malloc/tst-mallocstate.c
index ba72650..ba79189 100644
--- a/malloc/tst-mallocstate.c
+++ b/malloc/tst-mallocstate.c
@@ -1,7 +1,6 @@
/* Emulate Emacs heap dumping to test malloc_set_state.
Copyright (C) 2001-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Wolfram Gloger <wg@malloc.de>, 2001.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
diff --git a/malloc/tst-obstack.c b/malloc/tst-obstack.c
index ee1385d..18af8ea 100644
--- a/malloc/tst-obstack.c
+++ b/malloc/tst-obstack.c
@@ -1,4 +1,3 @@
-/* Test case by Alexandre Duret-Lutz <duret_g@epita.fr>. */
#include <obstack.h>
#include <stdint.h>
#include <stdio.h>