Share via


EventLoop_Run_Result 열거형

헤더: #include <applibs/eventloop.h>

EventLoop_Run 함수에 대해 가능한 반환 값입니다.

typedef int EventLoop_Run_Result;
enum {
    EventLoop_Run_Failed = -1,
    EventLoop_Run_FinishedEmpty = 0,
    EventLoop_Run_Finished = 1,
};

멤버

EventLoop_Run_Failed

EventLoop_Run 실패했습니다. errno 에는 특정 오류 코드가 있습니다.

EventLoop_Run_FinishedEmpty

EventLoop_Run 이벤트를 처리하지 않고 완료되었습니다.

EventLoop_Run_Finished

EventLoop_Run 하나 이상의 이벤트를 처리한 후 완료되었습니다.