Rev 1224 | Rev 1248 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1224 | Rev 1229 | ||
|---|---|---|---|
| Line 43... | Line 43... | ||
| 43 | 43 | ||
| 44 | /** Create buddy system |
44 | /** Create buddy system |
| 45 | * |
45 | * |
| 46 | * Allocate memory for and initialize new buddy system. |
46 | * Allocate memory for and initialize new buddy system. |
| 47 | * |
47 | * |
| 48 | * @param b Preallocated buddy system control data |
48 | * @param b Preallocated buddy system control data. |
| 49 | * @param max_order The biggest allocable size will be 2^max_order. |
49 | * @param max_order The biggest allocable size will be 2^max_order. |
| 50 | * @param op Operations for new buddy system. |
50 | * @param op Operations for new buddy system. |
| 51 | * @param data Pointer to be used by implementation. |
51 | * @param data Pointer to be used by implementation. |
| 52 | * |
52 | * |
| 53 | * @return New buddy system. |
53 | * @return New buddy system. |