diff options
author | Richard Braun <rbraun@sceen.net> | 2015-04-14 18:13:37 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2015-04-14 18:13:37 +0200 |
commit | f27f7643491fe8303aa939bb539bb9a490f7b3ad (patch) | |
tree | aacbabab2832fd82dfe85584e7c4acba481bca33 | |
parent | 64b01cfc298d651f9f2fbad91f818699dec1599c (diff) |
Update copyright notices
Mention upstream URL in each file, update copyrights.
-rw-r--r-- | avltree.c | 6 | ||||
-rw-r--r-- | avltree.h | 5 | ||||
-rw-r--r-- | avltree_i.h | 6 | ||||
-rw-r--r-- | bitmap.c | 4 | ||||
-rw-r--r-- | bitmap.h | 3 | ||||
-rw-r--r-- | bitmap_i.h | 4 | ||||
-rw-r--r-- | cpu.h | 6 | ||||
-rw-r--r-- | error.c | 6 | ||||
-rw-r--r-- | error.h | 6 | ||||
-rw-r--r-- | hash.h | 5 | ||||
-rw-r--r-- | list.c | 5 | ||||
-rw-r--r-- | list.h | 5 | ||||
-rw-r--r-- | macros.h | 3 | ||||
-rw-r--r-- | rbtree.c | 4 | ||||
-rw-r--r-- | rbtree.h | 5 | ||||
-rw-r--r-- | rbtree_i.h | 6 | ||||
-rw-r--r-- | rdxtree.c | 4 | ||||
-rw-r--r-- | rdxtree.h | 3 | ||||
-rw-r--r-- | rdxtree_i.h | 4 | ||||
-rw-r--r-- | x86/atomic.h | 5 | ||||
-rw-r--r-- | x86/mb.h | 5 |
21 files changed, 87 insertions, 13 deletions
@@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2012 Richard Braun. + * Copyright (c) 2010-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -21,6 +21,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #include <assert.h> @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2011, 2012 Richard Braun. + * Copyright (c) 2010-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -29,6 +29,9 @@ * the more common case where there can be as many insertions/removals as * lookups, or the amount of changes can't be determined, red-black trees * provide better average performance. + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _AVLTREE_H diff --git a/avltree_i.h b/avltree_i.h index 4c38060..131487f 100644 --- a/avltree_i.h +++ b/avltree_i.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2011, 2012 Richard Braun. + * Copyright (c) 2010-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -21,6 +21,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _AVLTREE_I_H @@ -21,6 +21,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #include <limits.h> @@ -26,6 +26,9 @@ * * Most functions do not check whether the given parameters are valid. This * is the responsibility of the caller. + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _BITMAP_H @@ -20,6 +20,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _BITMAP_I_H @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 Richard Braun. + * Copyright (c) 2011-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -21,6 +21,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _CPU_H @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010 Richard Braun. + * Copyright (c) 2009-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -21,6 +21,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #include <errno.h> @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010 Richard Braun. + * Copyright (c) 2009-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -21,6 +21,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _ERROR_H @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2014 Richard Braun. + * Copyright (c) 2010-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -42,6 +42,9 @@ * It can be used by the implementation to select high or low bits, depending * on their relative randomness. To get complete, unmasked hashes, use the * HASH_ALLBITS macro. + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _HASH_H @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010 Richard Braun. + * Copyright (c) 2009-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -33,6 +33,9 @@ * - It only requires constant additional space (as it works on linked lists). * - It performs at O(n log n) for average and worst cases. * - It is adaptive, performing faster on already sorted lists. + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #include "list.h" @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010, 2014 Richard Braun. + * Copyright (c) 2009-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -24,6 +24,9 @@ * * * Simple doubly-linked list. + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _LIST_H @@ -24,6 +24,9 @@ * * * Helper macros. + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _MACROS_H @@ -21,6 +21,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #include <assert.h> @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2011, 2012 Richard Braun. + * Copyright (c) 2010-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -24,6 +24,9 @@ * * * Red-black tree. + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _RBTREE_H @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2011, 2012 Richard Braun. + * Copyright (c) 2010-2015 Richard Braun. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -21,6 +21,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _RBTREE_I_H @@ -21,6 +21,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #include <assert.h> @@ -27,6 +27,9 @@ * * In addition to the standard insertion operation, this implementation * can allocate keys for the caller at insertion time. + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _RDXTREE_H diff --git a/rdxtree_i.h b/rdxtree_i.h index 9c9f962..08b41e5 100644 --- a/rdxtree_i.h +++ b/rdxtree_i.h @@ -13,6 +13,10 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _RDXTREE_I_H diff --git a/x86/atomic.h b/x86/atomic.h index 27c29de..52a4e5e 100644 --- a/x86/atomic.h +++ b/x86/atomic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012-2014 Richard Braun. + * Copyright (c) 2012-2015 Richard Braun. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -23,6 +23,9 @@ * * * Atomic operations. + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _X86_ATOMIC_H @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012-2013 Richard Braun. + * Copyright (c) 2012-2015 Richard Braun. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -35,6 +35,9 @@ * can be reordered after loads. As a result, load and store memory barriers * are simple compiler barriers whereas full memory barriers must generate * a barrier instruction. + * + * Upstream site with license notes : + * http://git.sceen.net/rbraun/librbraun.git/ */ #ifndef _X86_MB_H |