0

我正在尝试使用一个线程库,它具有这样定义的线程启动函数:

int vg_thread_create(VGThreadFunction func, 
  void *arg, 
  VGThreadDescriptor *tid,
  void *stack, 
  size_t stack_size,
  long priority,
  int flags );

而 VGThreadFunction 是下面的 typedef:

typedef void* (*VGThreadFunction) ( void* )

为了论证,我有一个这样的函数:

void doit() {
  cout << "Woohoo printing stuff in new thread\n";
}

此函数的签名不是 void* func(void*) - 我是否被迫使用这样的函数签名?

如果我尝试:

VGThreadFunction testfunc = &doit;

我明白了

错误 C2440:“正在初始化”:无法从“void (__cdecl *)(void)”转换为“VGThreadFunction”

如何使用 vg_thread_create?

编辑

我试过这个:

void* doit(void* donothingvar) {
  cout << "printing stuff in new thread\n";
  return donothingvar;
}

然后在一个函数中:

VGThreadFunction testfunc = (VGThreadFunction)doit;

int ret = vg_thread_create(testfunc, 0, 0, 0, 0, 0, 0);

然后我在调用 vg_thread_create 时遇到访问冲突。

如果我进入该函数,它在调用 _beginthreadex 时实际上会崩溃

Unhandled exception at 0x0040f5d3 in threadtest.exe: 0xC0000005: Access violation  writing location 0x00000000.

有任何想法吗?

通过进入函数,我发现我必须传入一个有效的指针 - 传递零会导致 null 取消引用。对不起,有点具体。

4

1 回答 1

6

是的,函数签名必须匹配。只需在您的函数上放置一个虚拟参数即可。

于 2012-10-17T18:17:51.443 回答