diff options
author | Nick Clifton <nickc@redhat.com> | 2012-12-17 16:56:12 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2012-12-17 16:56:12 +0000 |
commit | 5bf135a788d468003cb2502d0a2239fd92d1ac25 (patch) | |
tree | 132a84edfc61cff6b50ea91ff766c08af3244abf /gprof | |
parent | 387894ff90a1048844cd81b9c190787d27d4faf9 (diff) | |
download | binutils-5bf135a788d468003cb2502d0a2239fd92d1ac25.tar.gz binutils-5bf135a788d468003cb2502d0a2239fd92d1ac25.tar.bz2 binutils-5bf135a788d468003cb2502d0a2239fd92d1ac25.zip |
Add copyright notices
Diffstat (limited to 'gprof')
-rw-r--r-- | gprof/ChangeLog | 16 | ||||
-rw-r--r-- | gprof/MAINTAINERS | 6 | ||||
-rw-r--r-- | gprof/Makefile.am | 17 | ||||
-rw-r--r-- | gprof/Makefile.in | 18 | ||||
-rw-r--r-- | gprof/README | 6 | ||||
-rw-r--r-- | gprof/TODO | 6 | ||||
-rw-r--r-- | gprof/bsd_callg_bl.m | 5 | ||||
-rw-r--r-- | gprof/cg_arcs.h | 19 | ||||
-rw-r--r-- | gprof/cg_dfn.h | 19 | ||||
-rw-r--r-- | gprof/configure.in | 17 | ||||
-rw-r--r-- | gprof/flat_bl.m | 6 | ||||
-rw-r--r-- | gprof/fsf_callg_bl.m | 5 | ||||
-rw-r--r-- | gprof/hertz.h | 19 | ||||
-rw-r--r-- | gprof/utils.h | 19 |
14 files changed, 178 insertions, 0 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog index ed77a574cbb..cc7f23c082f 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,19 @@ +2012-12-17 Nick Clifton <nickc@redhat.com> + + * MAINTAINERS: Add copyright notice. + * Makefile.am: Likewise. + * README: Likewise. + * TODO: Likewise. + * bsd_callg_bl.m: Likewise. + * cg_arcs.h: Likewise. + * cg_dfn.h: Likewise. + * configure.in: Likewise. + * flat_bl.m: Likewise. + * fsf_callg_bl.m: Likewise. + * hertz.h: Likewise. + * utils.h: Likewise. + * Makefile.in: Regenerate. + 2012-09-20 Joe Seymour <jseymour@codesourcery.com> * corefile.c (core_sym_class): Allow for ".constprop.N" cloned diff --git a/gprof/MAINTAINERS b/gprof/MAINTAINERS index d59a3bd7f88..cd933df76d7 100644 --- a/gprof/MAINTAINERS +++ b/gprof/MAINTAINERS @@ -1 +1,7 @@ See ../binutils/MAINTAINERS + +Copyright (C) 2012 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/gprof/Makefile.am b/gprof/Makefile.am index edd100ac924..0540793a999 100644 --- a/gprof/Makefile.am +++ b/gprof/Makefile.am @@ -1,4 +1,21 @@ ## Process this file with automake to generate Makefile.in +# +# Copyright 2012 Free Software Foundation +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING3. If not see +# <http://www.gnu.org/licenses/>. +# AUTOMAKE_OPTIONS = 1.11 foreign no-dist no-texinfo.tex ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd diff --git a/gprof/Makefile.in b/gprof/Makefile.in index a9d7073c799..c9f828e70ce 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -15,6 +15,24 @@ @SET_MAKE@ +# +# Copyright 2012 Free Software Foundation +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING3. If not see +# <http://www.gnu.org/licenses/>. +# + VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ diff --git a/gprof/README b/gprof/README index 8fe2da8a5ae..e81992a23fb 100644 --- a/gprof/README +++ b/gprof/README @@ -440,3 +440,9 @@ that is currently present in libgcc2.c does not generate a gmon.out file in a suitable format. This should be fixed for future releases of gcc. In the meantime, contact davidm@cs.arizona.edu for a version of __bb_exit_func() to is appropriate. + +Copyright (C) 2012 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/gprof/TODO b/gprof/TODO index 324983861c7..6519ffe9a62 100644 --- a/gprof/TODO +++ b/gprof/TODO @@ -67,3 +67,9 @@ read new gmon.out style files. The idea being that everyone will use the new format for basic-block style profiling but the old format for regular gpprofiling + +Copyright (C) 2012 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/gprof/bsd_callg_bl.m b/gprof/bsd_callg_bl.m index 533c96ca439..23c472563f4 100644 --- a/gprof/bsd_callg_bl.m +++ b/gprof/bsd_callg_bl.m @@ -106,3 +106,8 @@ index the index of this child in the call graph listing, the members of the cycle, and their contributions to the time and call counts of the cycle. +Copyright (C) 2012 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/gprof/cg_arcs.h b/gprof/cg_arcs.h index fe1af776f24..33b2be5d21c 100644 --- a/gprof/cg_arcs.h +++ b/gprof/cg_arcs.h @@ -1,3 +1,22 @@ +/* Copyright 2012 Free Software Foundation, Inc. + + This file is part of GNU Binutils. + + 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 + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, + MA 02110-1301, USA. */ + #ifndef cg_arcs_h #define cg_arcs_h diff --git a/gprof/cg_dfn.h b/gprof/cg_dfn.h index 66c3f05b4d9..9a1e4c994a9 100644 --- a/gprof/cg_dfn.h +++ b/gprof/cg_dfn.h @@ -1,3 +1,22 @@ +/* Copyright 2012 Free Software Foundation, Inc. + + This file is part of GNU Binutils. + + 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 + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, + MA 02110-1301, USA. */ + #ifndef cg_dfn_h #define cg_dfn_h diff --git a/gprof/configure.in b/gprof/configure.in index 5481fd4ae84..700bd2472b4 100644 --- a/gprof/configure.in +++ b/gprof/configure.in @@ -1,4 +1,21 @@ dnl Process this file with autoconf to produce a configure script. +dnl +dnl Copyright 2012 Free Software Foundation +dnl +dnl This file is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU General Public License as published by +dnl the Free Software Foundation; either version 3 of the License, or +dnl (at your option) any later version. +dnl +dnl This program is distributed in the hope that it will be useful, +dnl but WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +dnl GNU General Public License for more details. +dnl +dnl You should have received a copy of the GNU General Public License +dnl along with this program; see the file COPYING3. If not see +dnl <http://www.gnu.org/licenses/>. +dnl AC_PREREQ(2.59) AC_INIT AC_CONFIG_SRCDIR([gprof.c]) diff --git a/gprof/flat_bl.m b/gprof/flat_bl.m index db2871a1384..82697c70297 100644 --- a/gprof/flat_bl.m +++ b/gprof/flat_bl.m @@ -25,3 +25,9 @@ name the name of the function. This is the minor sort the function in the gprof listing. If the index is in parenthesis it shows where it would appear in the gprof listing if it were to be printed. + +Copyright (C) 2012 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/gprof/fsf_callg_bl.m b/gprof/fsf_callg_bl.m index a81e90a50d6..9badfa40e92 100644 --- a/gprof/fsf_callg_bl.m +++ b/gprof/fsf_callg_bl.m @@ -80,4 +80,9 @@ were internal to the cycle, and the calls entry for each member shows, for that member, how many times it was called from other members of the cycle. + +Copyright (C) 2012 Free Software Foundation, Inc. +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/gprof/hertz.h b/gprof/hertz.h index d3be327e4ed..a9054205546 100644 --- a/gprof/hertz.h +++ b/gprof/hertz.h @@ -1,3 +1,22 @@ +/* Copyright 2012 Free Software Foundation, Inc. + + This file is part of GNU Binutils. + + 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 + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, + MA 02110-1301, USA. */ + #ifndef hertz_h #define hertz_h diff --git a/gprof/utils.h b/gprof/utils.h index 0d24413b42f..b4a0a3de316 100644 --- a/gprof/utils.h +++ b/gprof/utils.h @@ -1,3 +1,22 @@ +/* Copyright 2012 Free Software Foundation, Inc. + + This file is part of GNU Binutils. + + 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 + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, + MA 02110-1301, USA. */ + #ifndef utils_h #define utils_h |