You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

umalloc.h 297B

1234567891011121314151617
  1. #ifndef _GPXE_UMALLOC_H
  2. #define _GPXE_UMALLOC_H
  3. /**
  4. * @file
  5. *
  6. * User memory allocation
  7. *
  8. */
  9. #include <gpxe/uaccess.h>
  10. extern userptr_t umalloc ( size_t size );
  11. extern userptr_t urealloc ( userptr_t ptr, size_t new_size );
  12. extern void ufree ( userptr_t ptr );
  13. #endif /* _GPXE_UMALLOC_H */