@
zhuangzhuang1988 Please see code below:
```python
from PyQt4 import QtGui, QtCore
import sys
import time
app = QtGui.QApplication(sys.argv)
#the following line will crash the app
time.sleep(300)
w = QtGui.QDialog()
w.show()
sys.exit(app.exec_())
```python
Error Message: ICE default IO error handler doing an exit(), pid = 31805, errno = 32
In some certain occasion, when tasks that take so much time for running, such as loading a database...etc, the app crashes either. To make it simple here, I just added a short period of time sleep to the source code, which crashes the app.
Sorry about that I cannot type Chinese on my Linux Server.