我在QT中使用Qextserialport,但我一直在警惕:
CommEvent overlapped write error: 995
这个警告意味着什么?更重要的是,我该如何解决?
答案 0 :(得分:0)
来自the source似乎995就是GetLastError()
返回的内容。 995代表ERROR_OPERATION_ABORTED
- 由于线程退出或应用程序请求,I / O操作已中止。
这来自winerror.h
:
//
// MessageId: ERROR_OPERATION_ABORTED
//
// MessageText:
//
// The I/O operation has been aborted because of either a thread exit or an application request.
//
#define ERROR_OPERATION_ABORTED 995L