* [PATCH] Add copyright statements to files in src/lib
@ 2010-01-22 20:18 Uwe Kleine-König
2010-01-25 20:22 ` Uwe Kleine-König
0 siblings, 1 reply; 3+ messages in thread
From: Uwe Kleine-König @ 2010-01-22 20:18 UTC (permalink / raw)
To: linux-rt-users; +Cc: John Kacur, Carsten Emde, Clark Williams
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: John Kacur <jkacur@redhat.com>
Cc: Carsten Emde <carsten.emde@osadl.org>
Cc: Clark Williams <williams@redhat.com>
---
Hello,
I'd like to have all files properly copyrighted for debian packaging. I
guessed year and people based on the git history.
Best regards
Uwe
src/lib/error.c | 6 ++++++
src/lib/rt-get_cpu.c | 4 +++-
src/lib/rt-utils.c | 8 ++++++++
3 files changed, 17 insertions(+), 1 deletions(-)
diff --git a/src/lib/error.c b/src/lib/error.c
index d5ad2aa..f37a938 100644
--- a/src/lib/error.c
+++ b/src/lib/error.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (C) 2009 John Kacur <jkacur@redhat.com>
+ *
+ * based on error routines found in
+ * Advanced Programming in the UNIX Environment 2nd ed.
+ */
#include "error.h"
/* Print an error message, plus a message for err and exit with error err */
diff --git a/src/lib/rt-get_cpu.c b/src/lib/rt-get_cpu.c
index 6ebda90..83430dd 100644
--- a/src/lib/rt-get_cpu.c
+++ b/src/lib/rt-get_cpu.c
@@ -1,3 +1,6 @@
+/*
+ * Copyright (C) 2009 John Kacur <jkacur@redhat.com>
+ */
#include "rt-get_cpu.h"
#ifdef __NR_getcpu
#elif defined(__GLIBC__) && defined(__GLIBC_MINOR__) \
@@ -22,4 +25,3 @@ int get_cpu_setup(void)
}
#endif
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] Add copyright statements to files in src/lib
2010-01-22 20:18 [PATCH] Add copyright statements to files in src/lib Uwe Kleine-König
@ 2010-01-25 20:22 ` Uwe Kleine-König
2010-01-25 20:24 ` John Kacur
0 siblings, 1 reply; 3+ messages in thread
From: Uwe Kleine-König @ 2010-01-25 20:22 UTC (permalink / raw)
To: linux-rt-users; +Cc: John Kacur, Carsten Emde, Clark Williams
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: John Kacur <jkacur@redhat.com>
Cc: Carsten Emde <carsten.emde@osadl.org>
Cc: Clark Williams <williams@redhat.com>
---
Hello,
compared to the previous patch I modified the comment in src/lib/error.c as
requested by John via irc.
Best regards
Uwe
src/lib/error.c | 6 ++++++
src/lib/rt-get_cpu.c | 4 +++-
src/lib/rt-utils.c | 8 ++++++++
3 files changed, 17 insertions(+), 1 deletions(-)
diff --git a/src/lib/error.c b/src/lib/error.c
index d5ad2aa..e9fe58f 100644
--- a/src/lib/error.c
+++ b/src/lib/error.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (C) 2009 John Kacur <jkacur@redhat.com>
+ *
+ * error routines, similar to those found in
+ * Advanced Programming in the UNIX Environment 2nd ed.
+ */
#include "error.h"
/* Print an error message, plus a message for err and exit with error err */
diff --git a/src/lib/rt-get_cpu.c b/src/lib/rt-get_cpu.c
index 6ebda90..83430dd 100644
--- a/src/lib/rt-get_cpu.c
+++ b/src/lib/rt-get_cpu.c
@@ -1,3 +1,6 @@
+/*
+ * Copyright (C) 2009 John Kacur <jkacur@redhat.com>
+ */
#include "rt-get_cpu.h"
#ifdef __NR_getcpu
#elif defined(__GLIBC__) && defined(__GLIBC_MINOR__) \
@@ -22,4 +25,3 @@ int get_cpu_setup(void)
}
#endif
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Add copyright statements to files in src/lib
2010-01-25 20:22 ` Uwe Kleine-König
@ 2010-01-25 20:24 ` John Kacur
0 siblings, 0 replies; 3+ messages in thread
From: John Kacur @ 2010-01-25 20:24 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: linux-rt-users, Carsten Emde, Clark Williams
2010/1/25 Uwe Kleine-König <u.kleine-koenig@pengutronix.de>:
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> Cc: John Kacur <jkacur@redhat.com>
> Cc: Carsten Emde <carsten.emde@osadl.org>
> Cc: Clark Williams <williams@redhat.com>
> ---
> Hello,
>
> compared to the previous patch I modified the comment in src/lib/error.c as
> requested by John via irc.
>
> Best regards
> Uwe
>
> src/lib/error.c | 6 ++++++
> src/lib/rt-get_cpu.c | 4 +++-
> src/lib/rt-utils.c | 8 ++++++++
> 3 files changed, 17 insertions(+), 1 deletions(-)
>
> diff --git a/src/lib/error.c b/src/lib/error.c
> index d5ad2aa..e9fe58f 100644
> --- a/src/lib/error.c
> +++ b/src/lib/error.c
> @@ -1,3 +1,9 @@
> +/*
> + * Copyright (C) 2009 John Kacur <jkacur@redhat.com>
> + *
> + * error routines, similar to those found in
> + * Advanced Programming in the UNIX Environment 2nd ed.
> + */
> #include "error.h"
>
> /* Print an error message, plus a message for err and exit with error err */
> diff --git a/src/lib/rt-get_cpu.c b/src/lib/rt-get_cpu.c
> index 6ebda90..83430dd 100644
> --- a/src/lib/rt-get_cpu.c
> +++ b/src/lib/rt-get_cpu.c
> @@ -1,3 +1,6 @@
> +/*
> + * Copyright (C) 2009 John Kacur <jkacur@redhat.com>
> + */
> #include "rt-get_cpu.h"
> #ifdef __NR_getcpu
> #elif defined(__GLIBC__) && defined(__GLIBC_MINOR__) \
> @@ -22,4 +25,3 @@ int get_cpu_setup(void)
> }
>
> #endif
> -
> diff --git a/src/lib/rt-utils.c b/src/lib/rt-utils.c
> index c760f5a..b5a77de 100644
> --- a/src/lib/rt-utils.c
> +++ b/src/lib/rt-utils.c
> @@ -1,3 +1,11 @@
> +/*
> + * Copyright (C) 2009 Carsten Emde <carsten.emde@osadl.org>
> + * Copyright (C) 2010 Clark Williams <williams@redhat.com>
> + *
> + * based on functions from cyclictest that has
> + * (C) 2008-2009 Clark Williams <williams@redhat.com>
> + * (C) 2005-2007 Thomas Gleixner <tglx@linutronix.de>
> + */
> #include <stdio.h>
> #include <stdlib.h>
> #include <string.h>
> --
> 1.6.6
>
> --
Okay, no objections.
Acked-by: John Kacur <jkacur@redhat.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-01-25 20:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-22 20:18 [PATCH] Add copyright statements to files in src/lib Uwe Kleine-König
2010-01-25 20:22 ` Uwe Kleine-König
2010-01-25 20:24 ` John Kacur
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).