我在 QT 中使用 Qextserialport,但我不断收到警告:
CommEvent overlapped write error: 995
这个警告是什么意思?更重要的是,我该如何解决?
我在 QT 中使用 Qextserialport,但我不断收到警告:
CommEvent overlapped write error: 995
这个警告是什么意思?更重要的是,我该如何解决?
从源头看来,GetLastError()
返回的是 995。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