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