3

众所周知,在多线程中使用 boehm-gc 需要GC_register_my_threadGC_get_stack_base. 但它似乎不适用于 C++11 的线程库,例如std::thread......如何将 boehm-gc 与 C++11 的线程库一起使用?

(我用的是VS2013)

编辑:这是经过测试的代码。std::thread很好,但std::future不起作用(停止_CrtIsValidHeapPointer

#include <iostream>
#include <thread>
#include <future>

#define GC_THREADS
#include <gc.h>
#include <gc_cpp.h>
#pragma comment(lib, "gcmt-lib")

void foo()
{
    GC_stack_base sb;
    GC_get_stack_base(&sb);
    GC_register_my_thread(&sb);

    int *ptr;
    for (int i = 0; i < 10; i++)
    {
        ptr = new (GC) int;
        *ptr = 1;
    }

    GC_unregister_my_thread();
}

int main()
{
    GC_INIT();
    GC_allow_register_threads();

    std::cout << "test for std::thread";
    std::thread thrd(foo);
    thrd.join();
    std::cout << " [sucs]\n";

    std::cout << "test for std::future";
    std::future<void> fu = std::async(std::launch::async, foo);
    fu.get();
    std::cout << " [sucs]\n";

    std::cin.get();
}

编辑:这是堆栈跟踪的捕获(对不起,它不是英语,但我认为没关系,反正) 在此处输入图像描述

这是一条调试消息

HEAP[TestGC.exe]: Invalid address specified to RtlValidateHeap( 00E80000, 00C92F80 )

在调试时,我发现错误发生在fu.get().

编辑:/MD(或/MDd)不会发生错误...

(我认为 GC 可能会触及库的指针(namespcae Concurrency),但这只是猜测;;)

4

1 回答 1

2

在开始使用收集器和创建线程之前,请确保同时发出

  • GC_INIT, 和
  • GC_allow_register_threads

然后在每个线程中跟进,

  • GC_get_stack_base/GC_register_my_thread, 最终
  • GC_unregister_my_thread.

你没有说你正在编译什么,但它适用于 gcc 4.8(使用 -std=c++11)。

编辑:OP 能够通过解决上述指令并使用/MD[d]多线程动态 MSVCR100 运行时的标志编译代码来解决问题。对于多线程静态编译运行时,该问题仍未解决。

于 2014-01-09T08:06:15.190 回答