4 * @brief All CDCM memory handling definitions are located here.
6 * @author Georgievskiy Yury, Alain Gagnaire. CERN AB/CO.
8 * @date Created on 17/02/2007
10 * Many thanks to Julian Lewis and Nicolas de Metz-Noblat.
12 * @version $Id: cdcmMem.h,v 1.4 2009/01/09 10:26:03 ygeorgie Exp $
14 #ifndef _CDCM_MEM_H_INCLUDE_
15 #define _CDCM_MEM_H_INCLUDE_
17 /* The size and flags of a buffer are prepended to it */
18 struct cdcm_mem_header
{
23 void cdcm_mem_free(void *addr
);
24 void *cdcm_mem_alloc(ssize_t size
, int flags
);
26 #endif /* _CDCM_MEM_H_INCLUDE_ */