---
title: aclrtCntNotifyWaitMode
description: "```"
url: https://www.hiascend.com/document/detail/zh/canncommercial/latest/API/runtimeapi/aclcppdevg_03_2039.html
sourcePath: /source/zh/canncommercial/900/API/runtimeapi/aclcppdevg_03_2039.html
indexId: 59c68f7494fab149334f01de661869b81c9e89325ac09ef3b9b50ced98c402f468
---
# aclrtCntNotifyWaitMode

```
typedef enum {
    ACL_RT_CNT_NOTIFY_WAIT_LESS_MODE = 0,               // CntNotify的当前计数值 < value，则解除Wait
    ACL_RT_CNT_NOTIFY_WAIT_EQUAL_MODE = 1,              // CntNotify的当前计数值 = value，则解除Wait
    ACL_RT_CNT_NOTIFY_WAIT_BIGGER_MODE = 2,             // CntNotify的当前计数值 > value，则解除Wait
    ACL_RT_CNT_NOTIFY_WAIT_BIGGER_OR_EQUAL_MODE = 3,    // CntNotify的当前计数值 >= value，则解除Wait
    ACL_RT_CNT_NOTIFY_WAIT_EQUAL_WITH_BITMASK_MODE = 4, // CntNotify的当前计数值 & value = value，则解除Wait
} aclrtCntNotifyWaitMode;
```
