Changes in uspace/drv/bus/usb/ohci/utils/malloc32.h [0d4b110:d4d74dc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/utils/malloc32.h
r0d4b110 rd4d74dc 35 35 #define DRV_OHCI_UTILS_MALLOC32_H 36 36 37 #include <assert.h> 38 #include <malloc.h> 39 #include <unistd.h> 40 #include <errno.h> 41 #include <mem.h> 37 42 #include <as.h> 38 #include <errno.h>39 #include <stdlib.h>40 #include <sys/types.h>41 43 42 44 /* Generic TDs and EDs require 16byte alignment, … … 61 63 return result; 62 64 } 63 65 /*----------------------------------------------------------------------------*/ 64 66 /** Physical mallocator simulator 65 67 * … … 69 71 static inline void * malloc32(size_t size) 70 72 { return memalign(OHCI_ALIGN, size); } 71 73 /*----------------------------------------------------------------------------*/ 72 74 /** Physical mallocator simulator 73 75 *
Note:
See TracChangeset
for help on using the changeset viewer.