aclrtCntNotifyWaitMode

1
2
3
4
5
6
7
typedef enum {
    ACL_RT_CNT_NOTIFY_WAIT_LESS_MODE = 0,               // CntNotify current count < Value: Cancel the wait.
    ACL_RT_CNT_NOTIFY_WAIT_EQUAL_MODE = 1,              // CntNotify current count = Value: Cancel the wait.
    ACL_RT_CNT_NOTIFY_WAIT_BIGGER_MODE = 2,             // CntNotify current count > Value: Cancel the wait.
    ACL_RT_CNT_NOTIFY_WAIT_BIGGER_OR_EQUAL_MODE = 3,    // CntNotify current count ≥ Value: Cancel the wait.
    ACL_RT_CNT_NOTIFY_WAIT_EQUAL_WITH_BITMASK_MODE = 4, // CntNotify current count & Value = Value: Cancel the wait.
} aclrtCntNotifyWaitMode;