Changes in boot/genarch/balloc.h [e731b0d:965dc18] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/genarch/balloc.h

    re731b0d r965dc18  
    3232#include <types.h>
    3333
     34#define BALLOC_MAX_SIZE         (128 * 1024)
     35
    3436typedef struct {
    3537        uintptr_t base;
     
    3739} ballocs_t;
    3840
    39 extern void balloc_init(ballocs_t *ball, uintptr_t base, uintptr_t kernel_base);
     41extern void balloc_init(ballocs_t *b, uintptr_t base);
    4042extern void *balloc(size_t size, size_t alignment);
    41 extern void *balloc_rebase(void *ptr);
    4243
    4344#endif
Note: See TracChangeset for help on using the changeset viewer.