myco-memory.h 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. /* Copyright (C) 2016 Max Riechelmann <max.riechelmann@student.kit.edu>
  2. (Karlsruhe Institute of Technology)
  3. This library is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Lesser General Public License as published by the
  5. Free Software Foundation; either version 2.1 of the License, or (at your
  6. option) any later version.
  7. This library is distributed in the hope that it will be useful, but WITHOUT
  8. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  10. details.
  11. You should have received a copy of the GNU Lesser General Public License along
  12. with this library; if not, write to the Free Software Foundation, Inc., 51
  13. Franklin St, Fifth Floor, Boston, MA 02110, USA
  14. */
  15. /**
  16. * SECTION: myco-memory
  17. * @Short_description: memory management implementation.
  18. * @Title: MycoMemory
  19. *
  20. * MycoMemory provides the common memory routines (malloc, free, ...) due to the
  21. * fact that our transactional approach relies on giving freed pages back to the
  22. * operating system. The default free implementation does not have that feature.
  23. */
  24. #ifndef __MYCO_MEMORY_H
  25. #define __MYCO_MEMORY_H
  26. #include <stdlib.h>
  27. #include <signal.h>
  28. #include <sys/uio.h>
  29. #endif //__MYCO_MEMORY_H