UCommon
|
Private heaps, pools, and associations. More...
#include <ucommon/platform.h>
#include <ucommon/protocols.h>
#include <ucommon/linked.h>
#include <ucommon/string.h>
Go to the source code of this file.
Data Structures | |
class | ucommon::pager< T > |
This is a base class for objects that may be created in pager pools. More... | |
Namespaces | |
namespace | ucommon |
Common namespace for all ucommon objects. | |
Typedefs | |
typedef DirPager | ucommon::dirlist_t |
A convenience type for using DirPager directly. | |
typedef StringPager | ucommon::stringlist_t |
A convenience type for paged string lists. | |
typedef StringPager::member | ucommon::stringlistitem_t |
A convenience type for paged string list items. | |
Functions | |
class | ucommon::__attribute__ ((visibility("default"))) ExclusiveProtocol |
An exclusive locking protocol interface base. | |
String | ucommon::str (StringPager &list, const char *prefix=NULL, const char *middle=NULL, const char *suffix=NULL) |
Private heaps, pools, and associations.
Private heaps often can reduce locking contention in threaded applications since they do not require using the global "malloc" function. Private heaps also can be used as auto-release heaps, where all memory allocated and handled out for small objects can be automatically released all at once. Pager pools are used to optimize system allocation around page boundaries. Associations allow private memory to be tagged and found by string identifiers.
Definition in file memory.h.