Closed ThiagoIze closed 1 year ago
AtCritSec was deprecated and replaced with AtMutex in Arnold 6.0.4 (release notes: https://help.autodesk.com/view/ARNOL/ENU/?guid=arnold_user_guide_ac_release_notes_ac_rn_6040_html). This is essentially a std::mutex and is easier to use since it has a constructor and destructor so there's no need to init/close.
AtCritSec
AtMutex
std::mutex
AtCritSec
was deprecated and replaced withAtMutex
in Arnold 6.0.4 (release notes: https://help.autodesk.com/view/ARNOL/ENU/?guid=arnold_user_guide_ac_release_notes_ac_rn_6040_html). This is essentially astd::mutex
and is easier to use since it has a constructor and destructor so there's no need to init/close.