1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/*
* OO encapsulation of Posix threads
*
* Copyright (C) 2003--2006 Enrico Zini <enrico@debian.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <wibble/sys/thread.h>
#include <sstream>
//using namespace std;
namespace wibble {
namespace sys {
void* Thread::Starter(void* parm)
{
return ((Thread*)parm)->main();
}
void Thread::testcancel()
{
pthread_testcancel();
}
void Thread::start()
{
int res = pthread_create(&thread, 0, Starter, this);
if (res != 0)
throw wibble::exception::System(res, std::string("Creating ") + threadTag() + " thread");
}
void Thread::startDetached()
{
pthread_attr_t thread_attrs;
pthread_attr_init(&thread_attrs);
pthread_attr_setdetachstate(&thread_attrs, PTHREAD_CREATE_DETACHED);
int res = pthread_create(&thread, &thread_attrs, Starter, this);
pthread_attr_destroy(&thread_attrs);
if (res != 0)
throw wibble::exception::System(res, std::string("Creating ") + threadTag() + " thread");
}
void* Thread::join()
{
void* result = 0;
int res = pthread_join(thread, &result);
if (res != 0)
throw wibble::exception::System(res, std::string("Joining ") + threadTag() + " thread");
return result;
}
void Thread::detach()
{
int res = pthread_detach(thread);
if (res != 0)
throw wibble::exception::System(res, std::string("Detaching ") + threadTag() + " thread");
}
void Thread::cancel()
{
int res = pthread_cancel(thread);
if (res != 0)
throw wibble::exception::System(res, std::string("Cancelling ") + threadTag() + " thread");
}
void Thread::kill(int signal)
{
int res = pthread_kill(thread, signal);
if (res != 0)
{
std::stringstream str;
str << "Killing " << threadTag() << " thread with signal " << signal;
throw wibble::exception::System(res, str.str());
}
}
}
}
// vim:set ts=4 sw=4:
|