跟踪线程创建点以进行调试

时间:2013-06-03 09:35:46

标签: c++

我爱上了lambdas,不久之前我写了一个简单的包装器,它接受一个lambda并在一个新线程上启动它。

//
// Starts a task on a separate thread, when passed a lambda expression
//
template<typename T>
smart_ptrs::w32handle StartTask(T f)
{
    // Make a copy of the task on the heap
    T* pTask = new T(f);

    // Create a new thread to service the task
    smart_ptrs::w32handle hThread(::CreateThread(
        NULL, 
        0, 
        (LPTHREAD_START_ROUTINE)& detail::start_task_proc<T>, 
        (LPVOID) pTask, 
        NULL, 
        NULL)); 

    // If the caller ignores this rc, the thread handle will simply close and the
    // thread will continue in fire-and-forget fashion.
    return hThread;
}

注意:是的我知道这不需要模板,可以愉快地使用std::function。我这样发布它是因为它匹配了我必须是模板的更复杂(异步队列)版本。

最终结果是在并行算法等中非常容易使用的函数。但是如果开始广泛使用这样的函数,则会出现问题。因为创建的线程似乎都来自相同的通用函数,所以很难分辨它们在代码中的位置。通常可以从他们正在做的事情的上下文中解决,但这并不像使用显式线程函数时那么容易。有没有人有一个很好的方法来标记这样的线程,以便它们更容易调试?

1 个答案:

答案 0 :(得分:3)

据我所知,从代码中可以看出,你的callstack中有一个start_task_proc的线程可以调用它们的函数对象。您可以修改该函数以获取指向“任务信息”结构的指针,而不是裸函数对象。您可以将任何您喜欢的信息填充到该信息对象中,例如您创建任务的位置的行号和文件名:

template <class T>
struct TaksInfo {
  T func;
  unsigned line;
  char const* file;

  TaskInfo(T&& t, unsigned l, char const* f)
    : func(std::move(t), line(l), file(f) {}
};


template<typename T>
smart_ptrs::w32handle StartTask(T f, unsigned line, char const* file)
{
    // Make a copy of the task on the heap
    auto pTask = new TaskInfo<T>(f, line, file);

    // Create a new thread to service the task
    smart_ptrs::w32handle hThread(::CreateThread(
        NULL, 
        0, 
        (LPTHREAD_START_ROUTINE)& detail::start_task_proc<T>, 
        (LPVOID) pTask, 
        NULL, 
        NULL)); 

    // If the caller ignores this rc, the thread handle will simply close and the
    // thread will continue in fire-and-forget fashion.
    return hThread;
}

#define START_TASK(f) StartTask(f, __LINE__, __FILE__)

template <class T>
DWORD start_task_proc(LPVOID lpParameter) {
  auto pTask = (TaskInfo<T>*) lpParameter;
  return pTask->func();
}


//use:
int main() {
  auto threadHandle = START_TASK(([]() -> DWORD { std::cout << "foo\n"; return 42;} ));
}

如果现在检查pTask中的start_task_proc,您可以看到fileline可以告诉您任务的开始位置。
当然,您可以避免TaskInfo结构,并使信息只是start_task_proc的模板参数:

template <class T, unsigned Line, char const* File>
DWORD start_task_proc(LPVOID lpParameter) { /* as you have it */)

template<unsigned Line, char const* File, typename T> //use T last fur type deduction
smart_ptrs::w32handle StartTask(T f)
{
    // Make a copy of the task on the heap
    auto pTask = new T(std::move(f));

    // Create a new thread to service the task
    smart_ptrs::w32handle hThread(::CreateThread(
        NULL, 
        0, 
        (LPTHREAD_START_ROUTINE)& detail::start_task_proc<T, Line, File>,   //!!!
        (LPVOID) pTask, 
        NULL, 
        NULL)); 

    // If the caller ignores this rc, the thread handle will simply close and the
    // thread will continue in fire-and-forget fashion.
    return hThread;
}

#define START_TASK(f) StartTask<__LINE__, __FILE__>(f)