何时在创建事件/互斥锁后删除Windows安全属性

时间:2015-06-02 16:51:28

标签: c++ windows mutex

我正在使用一些安全属性创建互斥锁,我的问题是应该何时删除此SECURITY_ATTRIBUTES结构。 我应该在创建互斥锁之后立即删除它,还是应该等到互斥锁句柄关闭。

Approach 1.
Create Security attributes
CreateMutex using the above Security attributes
do some task....
Close mutex
release Security attributes

Approach 2.
Create Security attributes
CreateMutex using the above Security attributes
release Security attributes
do some task....
Close mutex

哪一个是最好的办法?

0 个答案:

没有答案