um_malloc.h 411 B

1234567891011121314151617
  1. /*
  2. * Copyright (C) 2005 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
  3. * Licensed under the GPL
  4. */
  5. #ifndef __UM_MALLOC_H__
  6. #define __UM_MALLOC_H__
  7. extern void *um_kmalloc(int size);
  8. extern void *um_kmalloc_atomic(int size);
  9. extern void kfree(const void *ptr);
  10. extern void *um_vmalloc(int size);
  11. extern void *um_vmalloc_atomic(int size);
  12. extern void vfree(void *ptr);
  13. #endif /* __UM_MALLOC_H__ */