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
|
#ifndef OUTPUTDEBUGSTRINGTHREAD_H
#define OUTPUTDEBUGSTRINGTHREAD_H
#include <wx/thread.h> // Base class: wxThread
#include "cl_command_event.h"
wxDECLARE_EVENT(wxEVT_OUTPUT_DEBUG_STRING, clCommandEvent);
class OutputDebugStringThread : public wxThread
{
#ifdef __WXMSW__
struct dbwin_buffer {
DWORD dwProcessId;
char data[4096 - sizeof(DWORD)];
};
HANDLE m_hDBWinMutex;
HANDLE m_hDBMonBuffer;
HANDLE m_hEventBufferReady;
HANDLE m_hEventDataReady;
dbwin_buffer* m_pDBBuffer;
#endif
bool m_collecting;
public:
OutputDebugStringThread();
virtual ~OutputDebugStringThread();
public:
/**
* @brief the thread entry point
*/
virtual void* Entry();
/**
* Stops the thread
* This function returns only when the thread is terminated.
* \note This call must be called from the context of other thread (e.g. main thread)
*/
void Stop();
/**
* Start the thread as joinable thread.
* \note This call must be called from the context of other thread (e.g. main thread)
*/
void Start(int priority = WXTHREAD_DEFAULT_PRIORITY);
/**
* @brief enable collection
*/
void SetCollecting(bool collecting) { this->m_collecting = collecting; }
};
#endif // OUTPUTDEBUGSTRINGTHREAD_H
|