From 71564c97cfd08c21c6fb582d25f7cf045a9e367e Mon Sep 17 00:00:00 2001 From: Helge Bahmann Date: Fri, 14 Sep 2012 19:12:13 +0000 Subject: [PATCH] Add missing copyright and licence notices Add missing notices to various files to make clear they are distributable under the boost licence. [SVN r80527] --- doc/examples.qbk | 7 +++++++ doc/platform.qbk | 7 +++++++ include/boost/atomic/detail/gcc-sparcv9.hpp | 6 ++++++ include/boost/atomic/detail/gcc-x86.hpp | 2 +- src/lockpool.cpp | 6 ++++++ 5 files changed, 27 insertions(+), 1 deletion(-) diff --git a/doc/examples.qbk b/doc/examples.qbk index 01c937e..0bd904d 100644 --- a/doc/examples.qbk +++ b/doc/examples.qbk @@ -1,3 +1,10 @@ +[/ + / Copyright (c) 2009 Helge Bahmann + / + / Distributed under the Boost Software License, Version 1.0. (See accompanying + / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + /] + [section:example_reference_counters Reference counting] The purpose of a ['reference counter] is to count the number diff --git a/doc/platform.qbk b/doc/platform.qbk index e135ba2..97d3d99 100644 --- a/doc/platform.qbk +++ b/doc/platform.qbk @@ -1,3 +1,10 @@ +[/ + / Copyright (c) 2009 Helge Bahmann + / + / Distributed under the Boost Software License, Version 1.0. (See accompanying + / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + /] + [section:template_organization Organization of class template layers] The implementation uses multiple layers of template classes that diff --git a/include/boost/atomic/detail/gcc-sparcv9.hpp b/include/boost/atomic/detail/gcc-sparcv9.hpp index a049100..e099c18 100644 --- a/include/boost/atomic/detail/gcc-sparcv9.hpp +++ b/include/boost/atomic/detail/gcc-sparcv9.hpp @@ -1,6 +1,12 @@ #ifndef BOOST_ATOMIC_DETAIL_GCC_SPARC_HPP #define BOOST_ATOMIC_DETAIL_GCC_SPARC_HPP +// Copyright (c) 2010 Helge Bahmann +// +// Distributed under the Boost Software License, Version 1.0. +// See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + namespace boost { namespace atomics { namespace detail { diff --git a/include/boost/atomic/detail/gcc-x86.hpp b/include/boost/atomic/detail/gcc-x86.hpp index ea3d651..e0d1de8 100644 --- a/include/boost/atomic/detail/gcc-x86.hpp +++ b/include/boost/atomic/detail/gcc-x86.hpp @@ -1577,4 +1577,4 @@ platform_load64(const volatile T * ptr) #endif /* !defined(BOOST_ATOMIC_FORCE_FALLBACK) */ -#endif \ No newline at end of file +#endif diff --git a/src/lockpool.cpp b/src/lockpool.cpp index eb57c8c..44a20c5 100644 --- a/src/lockpool.cpp +++ b/src/lockpool.cpp @@ -1,5 +1,11 @@ #include +// Copyright (c) 2011 Helge Bahmann +// +// Distributed under the Boost Software License, Version 1.0. +// See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + namespace boost { namespace atomics { namespace detail {