aclmdlRICaptureMode

1
2
3
4
5
typedef enum {
    ACL_MODEL_RI_CAPTURE_MODE_GLOBAL = 0,   // No thread is allowed to call unsafe functions.
    ACL_MODEL_RI_CAPTURE_MODE_THREAD_LOCAL, // The current thread is not allowed to call unsafe functions.
    ACL_MODEL_RI_CAPTURE_MODE_RELAXED,      // All threads are allowed to call unsafe functions.
} aclmdlRICaptureMode;