view src/stats/global-memory.h @ 13294:c51fbe64eae1

Initial implementation of statistics gathering daemon and plugins to feed it. Some statistics are still missing, some of the code is a bit ugly and the internal protocols will probably still change.
author Timo Sirainen <tss@iki.fi>
date Fri, 26 Aug 2011 05:15:12 +0300
parents
children
line wrap: on
line source

#ifndef GLOBAL_MEMORY_H
#define GLOBAL_MEMORY_H

extern size_t global_used_memory;

void global_memory_alloc(size_t size);
void global_memory_free(size_t size);

#endif