WIP fix namespace
This commit is contained in:
parent
e78383b044
commit
5ebd0dcf5a
5 changed files with 13 additions and 13 deletions
|
|
@ -36,7 +36,7 @@ extern "C" {
|
|||
#include <boost/noncopyable.hpp>
|
||||
|
||||
|
||||
namespace lib {
|
||||
namespace backend {
|
||||
|
||||
using std::tr1::bind;
|
||||
using std::tr1::function;
|
||||
|
|
@ -226,5 +226,5 @@ namespace lib {
|
|||
|
||||
|
||||
|
||||
} // namespace lib
|
||||
} // namespace backend
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ extern "C" {
|
|||
|
||||
|
||||
using std::string;
|
||||
using lib::Thread;
|
||||
using backend::Thread;
|
||||
using std::tr1::bind;
|
||||
using lumiera::Subsys;
|
||||
using lumiera::error::LUMIERA_ERROR_STATE;
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ using util::cStr;
|
|||
using test::Test;
|
||||
using lib::Sync;
|
||||
using lib::RecursiveLock_Waitable;
|
||||
using lib::Thread;
|
||||
using backend::Thread;
|
||||
|
||||
|
||||
namespace lumiera {
|
||||
|
|
|
|||
|
|
@ -35,15 +35,15 @@ using test::Test;
|
|||
|
||||
|
||||
|
||||
namespace lib {
|
||||
namespace test {
|
||||
namespace backend {
|
||||
namespace test {
|
||||
|
||||
/**************************************************************************
|
||||
* @test use the Lumiera backend to create some new threads, additionally
|
||||
* passing an condition variable for waiting on thread termination.
|
||||
* Actually this is implemented as creating and passing a JoinHandle.
|
||||
*
|
||||
* @see lib::Thread
|
||||
* @see backend::Thread
|
||||
* @see threads.h
|
||||
*/
|
||||
class ThreadWrapperJoin_test : public Test
|
||||
|
|
@ -62,7 +62,7 @@ namespace lib {
|
|||
void
|
||||
theAction (int secretValue) ///< to be run in a new thread...
|
||||
{
|
||||
usleep (100000); // pause 100ms prior to modifying
|
||||
usleep (100000); // pause 100ms prior to modifying
|
||||
aValue_ = secretValue+42;
|
||||
}
|
||||
|
||||
|
|
@ -138,4 +138,4 @@ namespace lib {
|
|||
|
||||
} // namespace test
|
||||
|
||||
} // namespace lib
|
||||
} // namespace backend
|
||||
|
|
|
|||
|
|
@ -34,8 +34,8 @@ using test::Test;
|
|||
|
||||
|
||||
|
||||
namespace lib {
|
||||
namespace test {
|
||||
namespace backend {
|
||||
namespace test {
|
||||
|
||||
namespace { // private test classes and data...
|
||||
|
||||
|
|
@ -86,7 +86,7 @@ namespace lib {
|
|||
* lumiera::Thread wrapper for binding to an arbitrary operation
|
||||
* and passing the appropriate context.
|
||||
*
|
||||
* @see lib::Thread
|
||||
* @see backend::Thread
|
||||
* @see threads.h
|
||||
*/
|
||||
class ThreadWrapper_test : public Test
|
||||
|
|
@ -116,4 +116,4 @@ namespace lib {
|
|||
|
||||
} // namespace test
|
||||
|
||||
} // namespace lib
|
||||
} // namespace backend
|
||||
|
|
|
|||
Loading…
Reference in a new issue