Add copyright statements to files in src/lib

Signed-off-by: Clark Williams <williams@redhat.com>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: John Kacur <jkacur@redhat.com>
Cc: Carsten Emde <carsten.emde@osadl.org>
This commit is contained in:
Uwe Kleine-König 2010-01-25 21:22:54 +01:00 committed by Clark Williams
parent a1a0609561
commit 1bb1e65265
3 changed files with 17 additions and 1 deletions

View File

@ -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 */

View File

@ -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

View File

@ -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>