metal-cos/sys/kern/salloc.c
2014-02-12 13:47:13 -08:00

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)
{
}