在移植qtopia-opensource-src-4.3.3以后,执行./qpe -qws,
终端中出现:
   Did not receive a connection event from the qws server
    Segmentation fault
在qtopiacore/qt/src/gui/kernel/qapplication_qws.cpp文件中:
void QWSDisplay::Data::waitForConnection()
{
    connected_event = 0;
    for (int i = 0; i < 5; i++) {
        fillQueue();
        if (connected_event)
            return;
        csocket->flush();
        csocket->waitForReadyRead(1000);
    }
    csocket->flush();
    if (!connected_event)
        qFatal("Did not receive a connection event from the qws server");
}
这个问题困扰了好久,不知道怎么解决,忘高手给点思路!