flame
flame copied to clipboard
Enhance Ptr usage in Flame
Motivation
Currently, it usually use MutexPtr to lock the whole object, which is overead to the Flame. It's better to use Arc
for object, and use MutexPtr
for its member if necessary.