diff options
author | Søren Sandmann <sandmann@redhat.com> | 2007-02-09 21:59:15 +0000 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@src.gnome.org> | 2007-02-09 21:59:15 +0000 |
commit | c541052c199d6e8c7f0ba77186ece5814dbf0f35 (patch) | |
tree | f9157a787a296c22758640f8d98924d4da338ac3 | |
parent | c1025c6b445574bc680b1d31ed737873b90abb6d (diff) |
Update copyright notices
Fri Feb 9 16:53:29 2007 Søren Sandmann <sandmann@redhat.com>
* Update copyright notices
svn path=/trunk/; revision=350
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | binfile.c | 2 | ||||
-rw-r--r-- | binparser.c | 17 | ||||
-rw-r--r-- | binparser.h | 17 | ||||
-rw-r--r-- | collector.c | 4 | ||||
-rw-r--r-- | elfparser.c | 17 | ||||
-rw-r--r-- | elfparser.h | 17 | ||||
-rw-r--r-- | sysprof.c | 5 |
8 files changed, 79 insertions, 4 deletions
@@ -1,3 +1,7 @@ +Fri Feb 9 16:53:29 2007 Søren Sandmann <sandmann@redhat.com> + + * Update copyright notices + Fri Feb 9 16:16:34 2007 Søren Sandmann <sandmann@redhat.com> * elfparser.c (struct ElfSym): Don't store the size of the symbol. @@ -3,7 +3,7 @@ * Copyright 2002, Kristian Rietveld * * Sysprof -- Sampling, systemwide CPU profiler - * Copyright 2004, 2005, Soeren Sandmann + * Copyright 2004, 2005, 2006, 2007, Soeren Sandmann * * 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 diff --git a/binparser.c b/binparser.c index 719acda..24f4b1d 100644 --- a/binparser.c +++ b/binparser.c @@ -1,3 +1,20 @@ +/* Sysprof -- Sampling, systemwide CPU profiler + * Copyright 2007, Soeren Sandmann + * + * 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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ #include <string.h> #include <stdlib.h> #include <glib.h> diff --git a/binparser.h b/binparser.h index 7240149..fd37a96 100644 --- a/binparser.h +++ b/binparser.h @@ -1,3 +1,20 @@ +/* Sysprof -- Sampling, systemwide CPU profiler + * Copyright 2007, Soeren Sandmann + * + * 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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ #include <glib.h> typedef struct BinField BinField; diff --git a/collector.c b/collector.c index 817eb37..6665346 100644 --- a/collector.c +++ b/collector.c @@ -309,6 +309,10 @@ typedef struct GHashTable *unique_cmdlines; } ResolveInfo; +/* Note that 'unique_symbols' is a direct_hash table. Ie., we + * rely on the address of symbol strings being different for different + * symbols. + */ static char * unique_dup (GHashTable *unique_symbols, const char *sym) { diff --git a/elfparser.c b/elfparser.c index 2dfcaf4..6f689af 100644 --- a/elfparser.c +++ b/elfparser.c @@ -1,3 +1,20 @@ +/* Sysprof -- Sampling, systemwide CPU profiler + * Copyright 2007, Soeren Sandmann + * + * 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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ #include <stdlib.h> #include <string.h> #include <elf.h> diff --git a/elfparser.h b/elfparser.h index 891abcc..3feaff3 100644 --- a/elfparser.h +++ b/elfparser.h @@ -1,3 +1,20 @@ +/* Sysprof -- Sampling, systemwide CPU profiler + * Copyright 2007, Soeren Sandmann + * + * 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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ #include <glib.h> typedef struct ElfSym ElfSym; @@ -1,6 +1,6 @@ /* Sysprof -- Sampling, systemwide CPU profiler * Copyright 2004, Red Hat, Inc. - * Copyright 2004, 2005, 2006, Soeren Sandmann + * Copyright 2004, 2005, 2006, 2007, Soeren Sandmann * * 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 @@ -16,7 +16,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - #include <config.h> #include <gtk/gtk.h> @@ -674,7 +673,7 @@ on_about_activated (GtkWidget *widget, gpointer data) gtk_show_about_dialog (GTK_WINDOW (app->main_window), "logo", app->icon, "name", APPLICATION_NAME, - "copyright", "Copyright 2004-2006, S"OSLASH"ren Sandmann", + "copyright", "Copyright 2004-2007, S"OSLASH"ren Sandmann", "version", PACKAGE_VERSION, NULL); } |