
18 Mar
2010
18 Mar
'10
3:54 p.m.
El 14/03/2010 19:33, Andy Wiese escribió:
Is it possible to create a: typedef basic_managed_mapped_file< char,rbtree_best_fit< mutex_family
,iset_index > managed_mapped_file; That uses some kind of no-op mutex family? Can anyone give me a hint how to declare such a thing? Thanks much for any advice, Andy
You can customize locking in the AllocationAlgorithm because rbtree_best_fit is template<class MutexFamily, class VoidPointer, std::size_t MemAlignment> class rbtree_best_fit; use null_mutex_family declared in mutex_family.hpp typedef basic_managed_mapped_file < char,rbtree_best_fit< null_mutex_family>,iset_index > my_managed_mapped_file; Best, Ion