]> Joshua Wise's Git repositories - netwatch.git/blob - include/paging.h
Add some headers.
[netwatch.git] / include / paging.h
1 /* minilib.h
2  * Definitions for page-table mapping and demapping
3  * NetWatch system management mode administration console
4  *
5  * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
6  * This program is free software; you can redistribute and/or modify it under
7  * the terms found in the file LICENSE in the root of this source tree. 
8  *
9  */
10
11 #ifndef __PAGING_H
12 #define __PAGING_H
13
14 extern unsigned long v2p(void *virt);
15 extern void *p2v(unsigned long phys);
16 extern int addmap(unsigned long vaddr, unsigned long paddr);
17 extern int addmap_4m(unsigned long vaddr, unsigned long paddr);
18 extern void *demap(unsigned long _pd, unsigned long vaddr);
19
20 #endif
This page took 0.023054 seconds and 4 git commands to generate.