Changes in uspace/drv/uhci/utils/malloc32.h [1431e8f:01656f2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci/utils/malloc32.h
r1431e8f r01656f2 53 53 static inline void * malloc32(size_t size) 54 54 /* TODO: this is ugly */ 55 { return memalign( 16, size); }55 { return memalign(size, 16); } 56 56 57 57 static inline void * get_page() … … 69 69 70 70 static inline void * memalign32(size_t size, size_t alignment) 71 { return memalign( alignment, size); }71 { return memalign(size, alignment); } 72 72 73 73 static inline void free32(void * addr)
Note:
See TracChangeset
for help on using the changeset viewer.