Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r52451 - in sandbox/task: boost boost/task boost/task/detail libs/task/build libs/task/examples libs/task/src libs/task/test
From: oliver.kowalke_at_[hidden]
Date: 2009-04-17 14:02:01


Author: olli
Date: 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
New Revision: 52451
URL: http://svn.boost.org/trac/boost/changeset/52451

Log:
* updated license declaration

Text files modified:
   sandbox/task/boost/task.hpp | 8 +++++---
   sandbox/task/boost/task/bounded_channel.hpp | 8 +++++---
   sandbox/task/boost/task/default_pool.hpp | 8 +++++---
   sandbox/task/boost/task/detail/atomic.hpp | 8 +++++---
   sandbox/task/boost/task/detail/bind_processor.hpp | 8 +++++---
   sandbox/task/boost/task/detail/bind_processor_aix.hpp | 8 +++++---
   sandbox/task/boost/task/detail/bind_processor_hpux.hpp | 8 +++++---
   sandbox/task/boost/task/detail/bind_processor_linux.hpp | 8 +++++---
   sandbox/task/boost/task/detail/bind_processor_solaris.hpp | 8 +++++---
   sandbox/task/boost/task/detail/bind_processor_windows.hpp | 8 +++++---
   sandbox/task/boost/task/detail/callable.hpp | 8 +++++---
   sandbox/task/boost/task/detail/config.hpp | 8 +++++---
   sandbox/task/boost/task/detail/guard.hpp | 8 +++++---
   sandbox/task/boost/task/detail/info.hpp | 8 +++++---
   sandbox/task/boost/task/detail/interrupter.hpp | 8 +++++---
   sandbox/task/boost/task/detail/semaphore.hpp | 8 +++++---
   sandbox/task/boost/task/detail/semaphore_posix.hpp | 8 +++++---
   sandbox/task/boost/task/detail/semaphore_windows.hpp | 8 +++++---
   sandbox/task/boost/task/detail/worker.hpp | 8 +++++---
   sandbox/task/boost/task/detail/worker_group.hpp | 8 +++++---
   sandbox/task/boost/task/detail/wsq.hpp | 8 +++++---
   sandbox/task/boost/task/exceptions.hpp | 8 +++++---
   sandbox/task/boost/task/fifo.hpp | 8 +++++---
   sandbox/task/boost/task/info.hpp | 8 +++++---
   sandbox/task/boost/task/launch.hpp | 8 +++++---
   sandbox/task/boost/task/lifo.hpp | 8 +++++---
   sandbox/task/boost/task/pool.hpp | 8 +++++---
   sandbox/task/boost/task/poolsize.hpp | 8 +++++---
   sandbox/task/boost/task/priority.hpp | 8 +++++---
   sandbox/task/boost/task/scanns.hpp | 8 +++++---
   sandbox/task/boost/task/smart.hpp | 8 +++++---
   sandbox/task/boost/task/task.hpp | 8 +++++---
   sandbox/task/boost/task/unbounded_channel.hpp | 8 +++++---
   sandbox/task/boost/task/utility.hpp | 8 +++++---
   sandbox/task/boost/task/watermark.hpp | 8 +++++---
   sandbox/task/libs/task/build/Jamfile.v2 | 9 ++++-----
   sandbox/task/libs/task/examples/Jamfile.v2 | 10 ++++------
   sandbox/task/libs/task/examples/bind_to_processors.cpp | 6 ++++++
   sandbox/task/libs/task/examples/delay.cpp | 6 ++++++
   sandbox/task/libs/task/examples/fork_join.cpp | 6 ++++++
   sandbox/task/libs/task/examples/interrupt.cpp | 6 ++++++
   sandbox/task/libs/task/examples/pending.cpp | 6 ++++++
   sandbox/task/libs/task/examples/priority.cpp | 6 ++++++
   sandbox/task/libs/task/examples/reschedule_until.cpp | 6 ++++++
   sandbox/task/libs/task/examples/shutdonw_now.cpp | 6 ++++++
   sandbox/task/libs/task/examples/smart.cpp | 6 ++++++
   sandbox/task/libs/task/examples/submit.cpp | 6 ++++++
   sandbox/task/libs/task/examples/yield.cpp | 6 ++++++
   sandbox/task/libs/task/src/callable.cpp | 6 ++++++
   sandbox/task/libs/task/src/default_pool.cpp | 6 ++++++
   sandbox/task/libs/task/src/guard.cpp | 6 ++++++
   sandbox/task/libs/task/src/interrupter.cpp | 6 ++++++
   sandbox/task/libs/task/src/poolsize.cpp | 6 ++++++
   sandbox/task/libs/task/src/scanns.cpp | 6 ++++++
   sandbox/task/libs/task/src/semaphore_posix.cpp | 6 ++++++
   sandbox/task/libs/task/src/semaphore_windows.cpp | 6 ++++++
   sandbox/task/libs/task/src/watermark.cpp | 6 ++++++
   sandbox/task/libs/task/src/worker.cpp | 6 ++++++
   sandbox/task/libs/task/src/worker_group.cpp | 8 +++++---
   sandbox/task/libs/task/src/wsq.cpp | 6 ++++++
   sandbox/task/libs/task/test/test_functions.hpp | 8 +++++---
   sandbox/task/libs/task/test/test_launch.cpp | 8 +++++---
   sandbox/task/libs/task/test/test_pool_bounded_channel.cpp | 8 +++++---
   sandbox/task/libs/task/test/test_pool_unbounded_channel.cpp | 8 +++++---
   64 files changed, 340 insertions(+), 131 deletions(-)

Modified: sandbox/task/boost/task.hpp
==============================================================================
--- sandbox/task/boost/task.hpp (original)
+++ sandbox/task/boost/task.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_H
 #define BOOST_TASK_H

Modified: sandbox/task/boost/task/bounded_channel.hpp
==============================================================================
--- sandbox/task/boost/task/bounded_channel.hpp (original)
+++ sandbox/task/boost/task/bounded_channel.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_BOUNDED_CHANNEL_H
 #define BOOST_TASK_BOUNDED_CHANNEL_H

Modified: sandbox/task/boost/task/default_pool.hpp
==============================================================================
--- sandbox/task/boost/task/default_pool.hpp (original)
+++ sandbox/task/boost/task/default_pool.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DEFAULT_POOL_H
 #define BOOST_TASK_DEFAULT_POOL_H

Modified: sandbox/task/boost/task/detail/atomic.hpp
==============================================================================
--- sandbox/task/boost/task/detail/atomic.hpp (original)
+++ sandbox/task/boost/task/detail/atomic.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_ATOMIC_H
 #define BOOST_TASK_DETAIL_ATOMIC_H

Modified: sandbox/task/boost/task/detail/bind_processor.hpp
==============================================================================
--- sandbox/task/boost/task/detail/bind_processor.hpp (original)
+++ sandbox/task/boost/task/detail/bind_processor.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_BIND_PROCESSOR_H
 #define BOOST_TASK_DETAIL_BIND_PROCESSOR_H

Modified: sandbox/task/boost/task/detail/bind_processor_aix.hpp
==============================================================================
--- sandbox/task/boost/task/detail/bind_processor_aix.hpp (original)
+++ sandbox/task/boost/task/detail/bind_processor_aix.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_BIND_PROCESSOR_AIX_H
 #define BOOST_TASK_DETAIL_BIND_PROCESSOR_AIX_H

Modified: sandbox/task/boost/task/detail/bind_processor_hpux.hpp
==============================================================================
--- sandbox/task/boost/task/detail/bind_processor_hpux.hpp (original)
+++ sandbox/task/boost/task/detail/bind_processor_hpux.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_BIND_PROCESSOR_HPUX_H
 #define BOOST_TASK_DETAIL_BIND_PROCESSOR_HPUX_H

Modified: sandbox/task/boost/task/detail/bind_processor_linux.hpp
==============================================================================
--- sandbox/task/boost/task/detail/bind_processor_linux.hpp (original)
+++ sandbox/task/boost/task/detail/bind_processor_linux.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_BIND_PRCESSOR_LINUX_H
 #define BOOST_TASK_DETAIL_BIND_PRCESSOR_LINUX_H

Modified: sandbox/task/boost/task/detail/bind_processor_solaris.hpp
==============================================================================
--- sandbox/task/boost/task/detail/bind_processor_solaris.hpp (original)
+++ sandbox/task/boost/task/detail/bind_processor_solaris.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_BIND_PROCESSOR_SOLARIS_H
 #define BOOST_TASK_DETAIL_BIND_PROCESSOR_SOLARIS_H

Modified: sandbox/task/boost/task/detail/bind_processor_windows.hpp
==============================================================================
--- sandbox/task/boost/task/detail/bind_processor_windows.hpp (original)
+++ sandbox/task/boost/task/detail/bind_processor_windows.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_BIND_PROCESSOR_WINDOWS_H
 #define BOOST_TASK_DETAIL_BIND_PROCESSOR_WINDOWS_H

Modified: sandbox/task/boost/task/detail/callable.hpp
==============================================================================
--- sandbox/task/boost/task/detail/callable.hpp (original)
+++ sandbox/task/boost/task/detail/callable.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_CALLABLE_H
 #define BOOST_TASK_DETAIL_CALLABLE_H

Modified: sandbox/task/boost/task/detail/config.hpp
==============================================================================
--- sandbox/task/boost/task/detail/config.hpp (original)
+++ sandbox/task/boost/task/detail/config.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_CONFIG_H
 #define BOOST_TASK_DETAIL_CONFIG_H

Modified: sandbox/task/boost/task/detail/guard.hpp
==============================================================================
--- sandbox/task/boost/task/detail/guard.hpp (original)
+++ sandbox/task/boost/task/detail/guard.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_GUARD_H
 #define BOOST_TASK_DETAIL_GUARD_H

Modified: sandbox/task/boost/task/detail/info.hpp
==============================================================================
--- sandbox/task/boost/task/detail/info.hpp (original)
+++ sandbox/task/boost/task/detail/info.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_INFO_H
 #define BOOST_TASK_DETAIL_INFO_H

Modified: sandbox/task/boost/task/detail/interrupter.hpp
==============================================================================
--- sandbox/task/boost/task/detail/interrupter.hpp (original)
+++ sandbox/task/boost/task/detail/interrupter.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_INTERRUPTER_H
 #define BOOST_TASK_DETAIL_INTERRUPTER_H

Modified: sandbox/task/boost/task/detail/semaphore.hpp
==============================================================================
--- sandbox/task/boost/task/detail/semaphore.hpp (original)
+++ sandbox/task/boost/task/detail/semaphore.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_SEMAPHORE_H
 #define BOOST_TASK_DETAIL_SEMAPHORE_H

Modified: sandbox/task/boost/task/detail/semaphore_posix.hpp
==============================================================================
--- sandbox/task/boost/task/detail/semaphore_posix.hpp (original)
+++ sandbox/task/boost/task/detail/semaphore_posix.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_SEMAPHORE_POSIX_H
 #define BOOST_TASK_DETAIL_SEMAPHORE_POSIX_H

Modified: sandbox/task/boost/task/detail/semaphore_windows.hpp
==============================================================================
--- sandbox/task/boost/task/detail/semaphore_windows.hpp (original)
+++ sandbox/task/boost/task/detail/semaphore_windows.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_SEMAPHORE_WINDOWS_H
 #define BOOST_TASK_DETAIL_SEMAPHORE_WINDOWS_H

Modified: sandbox/task/boost/task/detail/worker.hpp
==============================================================================
--- sandbox/task/boost/task/detail/worker.hpp (original)
+++ sandbox/task/boost/task/detail/worker.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_WORKER_H
 #define BOOST_TASK_DETAIL_WORKER_H

Modified: sandbox/task/boost/task/detail/worker_group.hpp
==============================================================================
--- sandbox/task/boost/task/detail/worker_group.hpp (original)
+++ sandbox/task/boost/task/detail/worker_group.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_WORKER_GROUP_H
 #define BOOST_TASK_DETAIL_WORKER_GROUP_H

Modified: sandbox/task/boost/task/detail/wsq.hpp
==============================================================================
--- sandbox/task/boost/task/detail/wsq.hpp (original)
+++ sandbox/task/boost/task/detail/wsq.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_DETAIL_WSQ_H
 #define BOOST_TASK_DETAIL_WSQ_H

Modified: sandbox/task/boost/task/exceptions.hpp
==============================================================================
--- sandbox/task/boost/task/exceptions.hpp (original)
+++ sandbox/task/boost/task/exceptions.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_EXCEPTIONS_H
 #define BOOST_TASK_EXCEPTIONS_H

Modified: sandbox/task/boost/task/fifo.hpp
==============================================================================
--- sandbox/task/boost/task/fifo.hpp (original)
+++ sandbox/task/boost/task/fifo.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_FIFO_H
 #define BOOST_TASK_FIFO_H

Modified: sandbox/task/boost/task/info.hpp
==============================================================================
--- sandbox/task/boost/task/info.hpp (original)
+++ sandbox/task/boost/task/info.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_INFO_H
 #define BOOST_TASK_INFO_H

Modified: sandbox/task/boost/task/launch.hpp
==============================================================================
--- sandbox/task/boost/task/launch.hpp (original)
+++ sandbox/task/boost/task/launch.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_LAUNCH_H
 #define BOOST_TASK_LAUNCH_H

Modified: sandbox/task/boost/task/lifo.hpp
==============================================================================
--- sandbox/task/boost/task/lifo.hpp (original)
+++ sandbox/task/boost/task/lifo.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_LIFO_H
 #define BOOST_TASK_LIFO_H

Modified: sandbox/task/boost/task/pool.hpp
==============================================================================
--- sandbox/task/boost/task/pool.hpp (original)
+++ sandbox/task/boost/task/pool.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_POOL_H
 #define BOOST_TASK_POOL_H

Modified: sandbox/task/boost/task/poolsize.hpp
==============================================================================
--- sandbox/task/boost/task/poolsize.hpp (original)
+++ sandbox/task/boost/task/poolsize.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_POOLSIZE_H
 #define BOOST_TASK_POOLSIZE_H

Modified: sandbox/task/boost/task/priority.hpp
==============================================================================
--- sandbox/task/boost/task/priority.hpp (original)
+++ sandbox/task/boost/task/priority.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_PRIORITY_H
 #define BOOST_TASK_PRIORITY_H

Modified: sandbox/task/boost/task/scanns.hpp
==============================================================================
--- sandbox/task/boost/task/scanns.hpp (original)
+++ sandbox/task/boost/task/scanns.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_SCANNS_H
 #define BOOST_TASK_SCANNS_H

Modified: sandbox/task/boost/task/smart.hpp
==============================================================================
--- sandbox/task/boost/task/smart.hpp (original)
+++ sandbox/task/boost/task/smart.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_SMART_H
 #define BOOST_TASK_SMART_H

Modified: sandbox/task/boost/task/task.hpp
==============================================================================
--- sandbox/task/boost/task/task.hpp (original)
+++ sandbox/task/boost/task/task.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_TASK_H
 #define BOOST_TASK_TASK_H

Modified: sandbox/task/boost/task/unbounded_channel.hpp
==============================================================================
--- sandbox/task/boost/task/unbounded_channel.hpp (original)
+++ sandbox/task/boost/task/unbounded_channel.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_UNBOUNDED_CHANNEL_H
 #define BOOST_TASK_UNBOUNDED_CHANNEL_H

Modified: sandbox/task/boost/task/utility.hpp
==============================================================================
--- sandbox/task/boost/task/utility.hpp (original)
+++ sandbox/task/boost/task/utility.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)txt)
 
 #ifndef BOOST_TASK_UTILITY_H
 #define BOOST_TASK_UTILITY_H

Modified: sandbox/task/boost/task/watermark.hpp
==============================================================================
--- sandbox/task/boost/task/watermark.hpp (original)
+++ sandbox/task/boost/task/watermark.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TASK_WATER_MARK_H
 #define BOOST_TASK_WATER_MARK_H

Modified: sandbox/task/libs/task/build/Jamfile.v2
==============================================================================
--- sandbox/task/libs/task/build/Jamfile.v2 (original)
+++ sandbox/task/libs/task/build/Jamfile.v2 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,11 +1,10 @@
-# Boost System Library Build Jamfile
-
-# (C) Copyright Oliver Kowalke 2009
 
+# Copyright Oliver Kowalke 2009.
 # Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or www.boost.org/LICENSE_1_0.txt)
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
 
-# See library home page at http://www.boost.org/libs/system
+# Boost System Library Build Jamfile
 
 import os ;
 import feature ;

Modified: sandbox/task/libs/task/examples/Jamfile.v2
==============================================================================
--- sandbox/task/libs/task/examples/Jamfile.v2 (original)
+++ sandbox/task/libs/task/examples/Jamfile.v2 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,10 +1,8 @@
-# Boost.ThreadPool Library Example Jamfile
 
-# Copyright (C) 2008 Oliver Kowalke
-
-# Use, modification and distribution is subject to 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)
+# Copyright Oliver Kowalke 2009.
+# 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)
 
 # For more information, see http://www.boost.org/
 

Modified: sandbox/task/libs/task/examples/bind_to_processors.cpp
==============================================================================
--- sandbox/task/libs/task/examples/bind_to_processors.cpp (original)
+++ sandbox/task/libs/task/examples/bind_to_processors.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <iostream>
 #include <cstdlib>
 #include <stdexcept>

Modified: sandbox/task/libs/task/examples/delay.cpp
==============================================================================
--- sandbox/task/libs/task/examples/delay.cpp (original)
+++ sandbox/task/libs/task/examples/delay.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <iostream>
 #include <cstdlib>
 #include <stdexcept>

Modified: sandbox/task/libs/task/examples/fork_join.cpp
==============================================================================
--- sandbox/task/libs/task/examples/fork_join.cpp (original)
+++ sandbox/task/libs/task/examples/fork_join.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <iostream>
 #include <cstdlib>
 #include <stdexcept>

Modified: sandbox/task/libs/task/examples/interrupt.cpp
==============================================================================
--- sandbox/task/libs/task/examples/interrupt.cpp (original)
+++ sandbox/task/libs/task/examples/interrupt.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <iostream>
 #include <cstdlib>
 #include <stdexcept>

Modified: sandbox/task/libs/task/examples/pending.cpp
==============================================================================
--- sandbox/task/libs/task/examples/pending.cpp (original)
+++ sandbox/task/libs/task/examples/pending.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <iostream>
 #include <cstdlib>
 #include <stdexcept>

Modified: sandbox/task/libs/task/examples/priority.cpp
==============================================================================
--- sandbox/task/libs/task/examples/priority.cpp (original)
+++ sandbox/task/libs/task/examples/priority.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <iostream>
 #include <cstdlib>
 #include <stdexcept>

Modified: sandbox/task/libs/task/examples/reschedule_until.cpp
==============================================================================
--- sandbox/task/libs/task/examples/reschedule_until.cpp (original)
+++ sandbox/task/libs/task/examples/reschedule_until.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <cerrno>
 #include <cstddef>
 #include <cstring>

Modified: sandbox/task/libs/task/examples/shutdonw_now.cpp
==============================================================================
--- sandbox/task/libs/task/examples/shutdonw_now.cpp (original)
+++ sandbox/task/libs/task/examples/shutdonw_now.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <iostream>
 #include <cstdlib>
 #include <stdexcept>

Modified: sandbox/task/libs/task/examples/smart.cpp
==============================================================================
--- sandbox/task/libs/task/examples/smart.cpp (original)
+++ sandbox/task/libs/task/examples/smart.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <iostream>
 #include <cstdlib>
 #include <stdexcept>

Modified: sandbox/task/libs/task/examples/submit.cpp
==============================================================================
--- sandbox/task/libs/task/examples/submit.cpp (original)
+++ sandbox/task/libs/task/examples/submit.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <iostream>
 #include <cstdlib>
 #include <stdexcept>

Modified: sandbox/task/libs/task/examples/yield.cpp
==============================================================================
--- sandbox/task/libs/task/examples/yield.cpp (original)
+++ sandbox/task/libs/task/examples/yield.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include <iostream>
 #include <cstdlib>
 #include <stdexcept>

Modified: sandbox/task/libs/task/src/callable.cpp
==============================================================================
--- sandbox/task/libs/task/src/callable.cpp (original)
+++ sandbox/task/libs/task/src/callable.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/detail/callable.hpp"
 
 namespace boost { namespace task

Modified: sandbox/task/libs/task/src/default_pool.cpp
==============================================================================
--- sandbox/task/libs/task/src/default_pool.cpp (original)
+++ sandbox/task/libs/task/src/default_pool.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/default_pool.hpp"
 
 #include <boost/thread.hpp>

Modified: sandbox/task/libs/task/src/guard.cpp
==============================================================================
--- sandbox/task/libs/task/src/guard.cpp (original)
+++ sandbox/task/libs/task/src/guard.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/detail/guard.hpp"
 
 #include <boost/assert.hpp>

Modified: sandbox/task/libs/task/src/interrupter.cpp
==============================================================================
--- sandbox/task/libs/task/src/interrupter.cpp (original)
+++ sandbox/task/libs/task/src/interrupter.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/detail/interrupter.hpp"
 
 #include <boost/assert.hpp>

Modified: sandbox/task/libs/task/src/poolsize.cpp
==============================================================================
--- sandbox/task/libs/task/src/poolsize.cpp (original)
+++ sandbox/task/libs/task/src/poolsize.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/poolsize.hpp"
 
 #include <boost/task/exceptions.hpp>

Modified: sandbox/task/libs/task/src/scanns.cpp
==============================================================================
--- sandbox/task/libs/task/src/scanns.cpp (original)
+++ sandbox/task/libs/task/src/scanns.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/scanns.hpp"
 
 #include <boost/task/exceptions.hpp>

Modified: sandbox/task/libs/task/src/semaphore_posix.cpp
==============================================================================
--- sandbox/task/libs/task/src/semaphore_posix.cpp (original)
+++ sandbox/task/libs/task/src/semaphore_posix.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/detail/semaphore_posix.hpp"
 
 #include <cerrno>

Modified: sandbox/task/libs/task/src/semaphore_windows.cpp
==============================================================================
--- sandbox/task/libs/task/src/semaphore_windows.cpp (original)
+++ sandbox/task/libs/task/src/semaphore_windows.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/detail/semaphore_windows.hpp"
 
 #include <cerrno>

Modified: sandbox/task/libs/task/src/watermark.cpp
==============================================================================
--- sandbox/task/libs/task/src/watermark.cpp (original)
+++ sandbox/task/libs/task/src/watermark.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/watermark.hpp"
 
 #include <boost/task/exceptions.hpp>

Modified: sandbox/task/libs/task/src/worker.cpp
==============================================================================
--- sandbox/task/libs/task/src/worker.cpp (original)
+++ sandbox/task/libs/task/src/worker.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/detail/worker.hpp"
 
 namespace boost { namespace task

Modified: sandbox/task/libs/task/src/worker_group.cpp
==============================================================================
--- sandbox/task/libs/task/src/worker_group.cpp (original)
+++ sandbox/task/libs/task/src/worker_group.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #include "boost/task/detail/worker_group.hpp"
 

Modified: sandbox/task/libs/task/src/wsq.cpp
==============================================================================
--- sandbox/task/libs/task/src/wsq.cpp (original)
+++ sandbox/task/libs/task/src/wsq.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,3 +1,9 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
 #include "boost/task/detail/wsq.hpp"
 
 #include <boost/thread/locks.hpp>

Modified: sandbox/task/libs/task/test/test_functions.hpp
==============================================================================
--- sandbox/task/libs/task/test/test_functions.hpp (original)
+++ sandbox/task/libs/task/test/test_functions.hpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #ifndef BOOST_TP_TEST_FUNCTIONS_H
 #define BOOST_TP_TEST_FUNCTIONS_H

Modified: sandbox/task/libs/task/test/test_launch.cpp
==============================================================================
--- sandbox/task/libs/task/test/test_launch.cpp (original)
+++ sandbox/task/libs/task/test/test_launch.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #include <cstdlib>
 #include <iostream>

Modified: sandbox/task/libs/task/test/test_pool_bounded_channel.cpp
==============================================================================
--- sandbox/task/libs/task/test/test_pool_bounded_channel.cpp (original)
+++ sandbox/task/libs/task/test/test_pool_bounded_channel.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #include <cstdlib>
 #include <iostream>

Modified: sandbox/task/libs/task/test/test_pool_unbounded_channel.cpp
==============================================================================
--- sandbox/task/libs/task/test/test_pool_unbounded_channel.cpp (original)
+++ sandbox/task/libs/task/test/test_pool_unbounded_channel.cpp 2009-04-17 14:01:50 EDT (Fri, 17 Apr 2009)
@@ -1,6 +1,8 @@
-// Copyright (c) 2008 Oliver Kowalke. 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)
+
+// Copyright Oliver Kowalke 2009.
+// 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)
 
 #include <cstdlib>
 #include <iostream>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk