Skip to content
Snippets Groups Projects
Commit b019ac4f authored by kaashoek's avatar kaashoek
Browse files

Merge pull request #3 from beordle/master

Fix comments
parents 9cbe056c abce9b81
No related branches found
No related tags found
No related merge requests found
......@@ -19,4 +19,4 @@ static inline void *p2v(uint a) { return (void *) ((a) + KERNBASE); }
#define P2V(a) (((void *) (a)) + KERNBASE)
#define V2P_WO(x) ((x) - KERNBASE) // same as V2P, but without casts
#define P2V_WO(x) ((x) + KERNBASE) // same as V2P, but without casts
#define P2V_WO(x) ((x) + KERNBASE) // same as P2V, but without casts
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment