-1

我正在从 main 调用的函数之一生成线程。该线程的启动例程完全是另一个单独类中的函数。因此,为了访问该类,我编写了一个 extern "C" 函数,通过它我可以调用启动例程。但问题是,进入启动例程后,线程无法访问类的构造函数设置的成员变量值。

这对我来说似乎很奇怪,因为当我在不使用线程的情况下运行代码时一切都很完美。有人可以建议我出什么问题吗?

我在下面发布了一些相关的代码详细信息:

`外部“C”{

void* run(void* arg)
{
    CFileOp* trans = static_cast<CFileOp*>(arg);
    trans->write_block(arg);
    return 0;
}

}

int
TestFileOps(int file_size, CGlobalItems &globals){
...

for(i = 0; i < num_chunks; i++)
{
pthread_create( &thread_id[i], NULL, run, buf);
}

...
}`

//有一个类CFileOp,它有一些私有成员变量,而write_block是它的一个公共函数。

void* CFileOp::write_block(PVOID buf)
{
int rc = my_write(78, buf, m_chunk_size);
 if(rc != m_chunk_size)
 {
   fprintf(stderr, "Can't write block; rc=%d, buf=%p, chunk_size=%d\n", rc, buf, m_chunk_size);
    pthread_exit((void *)-1);return 0;;
  }
m_cur_pos++;
fprintf(stderr,"m_cur_pos: %d   m_chunks_per_file: %d\t",m_cur_pos,m_chunks_per_file);
  if(m_cur_pos >= m_chunks_per_file)                                                    
  {
   if(seek(0, SEEK_CUR) == -1)
    pthread_exit((void *)-1);return 0;// return -1;
 }
pthread_exit((void *)rc);
return 0;
}

我不能将整个代码作为基准代码发布,并且非常冗长和详细。请帮忙。

4

1 回答 1

0

如果我正确理解你想从线程调用成员函数的问题,如果你有 c++11,你就可以这样做

 std::thread th(&my_class::my_mem_func, &my_object);

这将创建一个线程th并执行my_mem_funcmy_object

编辑

std::thread th(&my_writer::write_some, &writer_object, data);
th.join();
于 2012-05-04T14:52:36.193 回答