--- linuxsampler/trunk/src/common/Condition.cpp 2006/06/27 22:53:17 879 +++ linuxsampler/trunk/src/common/Condition.cpp 2006/06/27 22:57:37 880 @@ -3,6 +3,7 @@ * LinuxSampler - modular, streaming capable sampler * * * * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck * + * Copyright (C) 2005, 2006 Christian Schoenebeck * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -26,6 +27,8 @@ #include "global.h" +namespace LinuxSampler { + Condition::Condition(bool bInitialCondition) { pthread_cond_init(&__posix_true_condition, NULL); pthread_cond_init(&__posix_false_condition, NULL); @@ -106,3 +109,5 @@ } Unlock(); } + +} // namespace LinuxSampler