Arena

a0::Arena arena(buf, mode);

An arena is a buffer tagged with accessiblity mode:

SHARED: buffer may be used simultaneously by multiple processes.

EXCLUSIVE: buffer will be used exclusively by this processes. This process may read and write.

READONLY: buffer may be read by multiple processes. No process will write.

References