basekernel/kernel/page.h

18 lines
361 B
C
Raw Permalink Normal View History

2024-10-14 23:09:16 +02:00
/*
Copyright (C) 2015-2019 The University of Notre Dame
This software is distributed under the GNU General Public License.
See the file LICENSE for details.
*/
#ifndef PAGE_H
#define PAGE_H
#include "kernel/types.h"
void page_init();
void *page_alloc(bool zeroit);
void page_free(void *addr);
void page_stats( uint32_t *nfree, uint32_t *ntotal );
#endif