aclmdlRICaptureMode

typedef enum {
    ACL_MODEL_RI_CAPTURE_MODE_GLOBAL = 0,   // No thread can 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 can call unsafe functions.
} aclmdlRICaptureMode;