From 08a56899c695e05906f6bb5081fab4b15ce0d875 Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Sun, 19 Sep 2010 17:10:43 +0300 Subject: [PATCH] Add a copyright notes on each source file This is a GPLv2 licensed software. Signed-off-by: Timo Kokkonen --- analyze.c | 17 +++++++++++++++++ analyze.h | 17 +++++++++++++++++ bintree.c | 17 +++++++++++++++++ bintree.h | 17 +++++++++++++++++ main.c | 17 +++++++++++++++++ pagemap.h | 17 +++++++++++++++++ parse.c | 17 +++++++++++++++++ parse.h | 17 +++++++++++++++++ pidlib.c | 17 +++++++++++++++++ pidlib.h | 17 +++++++++++++++++ utils.h | 20 ++++++++++++++++++++ 11 files changed, 190 insertions(+) diff --git a/analyze.c b/analyze.c index b2ab22c..4c1b542 100644 --- a/analyze.c +++ b/analyze.c @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #include #include diff --git a/analyze.h b/analyze.h index a803209..91bbc5d 100644 --- a/analyze.h +++ b/analyze.h @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #ifndef _ANALYZE_H #define _ANALYZE_H diff --git a/bintree.c b/bintree.c index 416d105..4f3d60e 100644 --- a/bintree.c +++ b/bintree.c @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #include #include "bintree.h" diff --git a/bintree.h b/bintree.h index a186800..5375cbd 100644 --- a/bintree.h +++ b/bintree.h @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #ifndef _BINTREE_H #define _BINTREE_H diff --git a/main.c b/main.c index 838f801..31fc863 100644 --- a/main.c +++ b/main.c @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #include #include #include diff --git a/pagemap.h b/pagemap.h index 130c307..3482b4d 100644 --- a/pagemap.h +++ b/pagemap.h @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #ifndef _PAGEMAP_H #define _PAGEMAP_H diff --git a/parse.c b/parse.c index be38f2f..9241526 100644 --- a/parse.c +++ b/parse.c @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #include #include #include diff --git a/parse.h b/parse.h index d915ce3..a9f1369 100644 --- a/parse.h +++ b/parse.h @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #ifndef _PARSE_H #define _PARSE_H diff --git a/pidlib.c b/pidlib.c index d432e9d..ce825c9 100644 --- a/pidlib.c +++ b/pidlib.c @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #include #include #include diff --git a/pidlib.h b/pidlib.h index f1704f2..eb9669b 100644 --- a/pidlib.h +++ b/pidlib.h @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #ifndef _PIDLIB_H_ #define _PIDLIB_H_ diff --git a/utils.h b/utils.h index cd54488..9c8fc23 100644 --- a/utils.h +++ b/utils.h @@ -1,3 +1,23 @@ +/* + * Copyright (C) 2010 Timo Kokkonen + * + * Some of the code is taken from other GPLv2 sources, such as the + * Linux kernel. + * + * 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. + * + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + #ifndef _UTILS_H #define _UTILS_H -- 2.44.0