31 lines
300 B
C
31 lines
300 B
C
/*
|
|
* Copyright (c) 2013-2014 Stanford University
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdint.h>
|
|
|
|
#include <kassert.h>
|
|
|
|
Slab *
|
|
salloc_new(uintptr_t objsz)
|
|
{
|
|
}
|
|
|
|
void
|
|
salloc_destroy(Slab *)
|
|
{
|
|
}
|
|
|
|
void *
|
|
salloc_alloc(Slab *slab)
|
|
{
|
|
}
|
|
|
|
void
|
|
salloc_free(Slab *slab, void *region)
|
|
{
|
|
}
|
|
|