Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add the Storage::read_async and Storage::write_async methods
[simgrid.git] / src / xbt / mallocator_private.h
1 /* mallocator - recycle objects to avoid malloc() / free()                  */
2
3 /* Copyright (c) 2006-2018. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef XBT_MALLOCATOR_PRIVATE_H
9 #define XBT_MALLOCATOR_PRIVATE_H
10
11 #include <xbt/function_types.h>
12
13 typedef struct s_xbt_mallocator {
14   void **objects;               /* objects stored by the mallocator and available for the user */
15   int current_size;             /* number of objects currently stored */
16   int max_size;                 /* maximum number of objects */
17   pvoid_f_void_t new_f;         /* function to call when we are running out of objects */
18   void_f_pvoid_t free_f;        /* function to call when we have got too many objects */
19   void_f_pvoid_t reset_f;       /* function to call when an object is released by the user */
20   char lock;                    /* lock to ensure the mallocator is thread-safe */
21 } s_xbt_mallocator_t;
22
23 #endif