1

我创建了一个基本的多线程 TCP 服务器,我想向所有连接的客户端发送数据。我已将服务器类的信号连接writing(QByteArray)到套接字线程的插槽writeToSocket(QByteArray),但是当我尝试通过发出上述信号来写入该套接字时,出现分段错误。就像我无法访问任何套接字对象的(这是线程的属性)方法一样。

我的简化代码:

void MyServer::incomingConnection(int handle)
{
ConnectionThread *thread = new ConnectionThread(handle, this);
connect(this, SIGNAL(writing(QByteArray)), thread, SLOT(writeToSocket(QByteArray)));
// Some more code necessary for thread to work
}

void RoleNetServer::WriteToAll(QByteArray data) 
{
    emit writing("test");
}

然后,在线程的源文件中:

void ConnectionThread::writeToSocket(QByteArray data) // a slot
{
    this->socket->write(data);
}
4

1 回答 1

0

只是一个想法。我可能错了。

新建/删除在 C++ 中不是线程安全的。不确定这对于 C++0x 是否仍然适用。我在 pthreads 中遇到了这个问题。

如果您使用新分配的内存,即使语法看起来正确,它也会引发分段错误。如果可能,尝试在线程/线程函数中分配它。

希望这会帮助你。

于 2012-04-17T06:51:51.400 回答