2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 14:05:33 +00:00

[2332] renamed thread/lock.h to thread/sync.h as it's not only for locks now

This commit is contained in:
JINMEI Tatuya
2012-10-17 09:05:37 -07:00
parent c450d77e81
commit 650655fd26
13 changed files with 14 additions and 14 deletions

View File

@@ -26,7 +26,7 @@
#include <exceptions/exceptions.h>
#include <util/buffer.h>
#include <util/threads/lock.h>
#include <util/threads/sync.h>
#include <dns/edns.h>
#include <dns/exceptions.h>

View File

@@ -18,7 +18,7 @@
#include <bench/benchmark_util.h>
#include <util/buffer.h>
#include <util/threads/lock.h>
#include <util/threads/sync.h>
#include <dns/message.h>
#include <dns/name.h>

View File

@@ -21,7 +21,7 @@
#include <config/ccsession.h>
#include <exceptions/exceptions.h>
#include <dns/rrclass.h>
#include <util/threads/lock.h>
#include <util/threads/sync.h>
#include <string>

View File

@@ -18,7 +18,7 @@
#include <util/buffer.h>
#include <util/io/socketsession.h>
#include <util/threads/lock.h>
#include <util/threads/sync.h>
#include <dns/message.h>
#include <dns/messagerenderer.h>

View File

@@ -39,7 +39,7 @@
#include <auth/datasrc_config.h>
#include <util/unittests/mock_socketsession.h>
#include <util/threads/lock.h>
#include <util/threads/sync.h>
#include <dns/tests/unittest_util.h>
#include <testutils/dnsmessage_test.h>
#include <testutils/srv_test.h>

View File

@@ -16,7 +16,7 @@
#include "datasrc_util.h"
#include <util/threads/lock.h>
#include <util/threads/sync.h>
#include <auth/auth_srv.h>
#include <auth/auth_config.h>

View File

@@ -16,7 +16,7 @@
#include <config/tests/fake_session.h>
#include <config/ccsession.h>
#include <util/threads/lock.h>
#include <util/threads/sync.h>
#include <gtest/gtest.h>

View File

@@ -5,7 +5,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
AM_CPPFLAGS += $(BOOST_INCLUDES) $(MULTITHREADING_FLAG)
lib_LTLIBRARIES = libb10-threads.la
libb10_threads_la_SOURCES = lock.h lock.cc
libb10_threads_la_SOURCES = sync.h sync.cc
libb10_threads_la_SOURCES += thread.h thread.cc
libb10_threads_la_LIBADD = $(top_builddir)/src/lib/exceptions/libb10-exceptions.la

View File

@@ -12,7 +12,7 @@
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#include "lock.h"
#include "sync.h"
#include <exceptions/exceptions.h>

View File

@@ -12,8 +12,8 @@
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#ifndef B10_THREAD_LOCK_H
#define B10_THREAD_LOCK_H
#ifndef B10_THREAD_SYNC_H
#define B10_THREAD_SYNC_H
#include <boost/noncopyable.hpp>

View File

@@ -14,7 +14,7 @@
#include <exceptions/exceptions.h>
#include <util/threads/lock.h>
#include <util/threads/sync.h>
#include <util/threads/thread.h>
#include <gtest/gtest.h>

View File

@@ -12,7 +12,7 @@
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#include <util/threads/lock.h>
#include <util/threads/sync.h>
#include <util/threads/thread.h>
#include <gtest/gtest.h>

View File

@@ -13,7 +13,7 @@
// PERFORMANCE OF THIS SOFTWARE.
#include "thread.h"
#include "lock.h"
#include "sync.h"
#include <memory>
#include <string>