您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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 */