barrier/mt/XThread.h

30 lines
868 B
C
Raw Normal View History

2001-10-06 14:13:28 +00:00
#ifndef XTHREAD_H
#define XTHREAD_H
// generic thread exception
class XThread { };
// thrown by CThread::Exit() to exit a thread. clients of CThread
// must not throw this type but must rethrow it if caught (by
// XThreadExit, XThread, or ...).
class XThreadExit : public XThread {
2002-04-29 14:40:01 +00:00
public:
XThreadExit(void* result) : m_result(result) { }
~XThreadExit() { }
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
public:
void* m_result;
2001-10-06 14:13:28 +00:00
};
// thrown to cancel a thread. clients must not throw this type, but
// must rethrow it if caught (by XThreadCancel, XThread, or ...).
class XThreadCancel : public XThread { };
// convenience macro to rethrow an XThread exception but ignore other
// exceptions. put this in your catch (...) handler after necessary
// cleanup but before leaving or returning from the handler.
#define RETHROW_XTHREAD \
try { throw; } catch (XThread&) { throw; } catch (...) { }
#endif