From: Mathieu Desnoyers Date: Fri, 6 Feb 2009 01:49:36 +0000 (-0500) Subject: add licensing X-Git-Tag: v0.1~327 X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=b257a10b0b05064dcb5dc9d4d1c5f95c0364b9dd add licensing --- diff --git a/test_urcu.c b/test_urcu.c index 650c030..10d4d99 100644 --- a/test_urcu.c +++ b/test_urcu.c @@ -1,3 +1,13 @@ +/* + * test_urcu.c + * + * Userspace RCU library - test program + * + * Copyright February 2009 - Mathieu Desnoyers + * + * Distributed under GPLv2 + */ + #include #include #include diff --git a/urcu.c b/urcu.c index 7e79207..ee79d1e 100644 --- a/urcu.c +++ b/urcu.c @@ -1,3 +1,13 @@ +/* + * urcu.c + * + * Userspace RCU library + * + * Copyright February 2009 - Mathieu Desnoyers + * + * Distributed under GPLv2 + */ + #include #include #include diff --git a/urcu.h b/urcu.h index bee7715..673f795 100644 --- a/urcu.h +++ b/urcu.h @@ -1,6 +1,16 @@ #ifndef _URCU_H #define _URCU_H +/* + * urcu.h + * + * Userspace RCU header + * + * Copyright February 2009 - Mathieu Desnoyers + * + * Distributed under GPLv2 + */ + /* The "volatile" is due to gcc bugs */ #define barrier() __asm__ __volatile__("": : :"memory")