diff options
author | Alexis211 <alexis211@gmail.com> | 2009-12-09 16:26:59 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-12-09 16:26:59 +0100 |
commit | df343de7cca5f89f8e8d825fbcc1a49413412716 (patch) | |
tree | 5c48afbd76c5cfc4c1297fc18acb0bc71cd502b3 /Source/Library/Userland/Binding/Process.class.h | |
parent | 1a1e0efa7b1894848c81d7f7e80bdcf6e8591c3f (diff) | |
download | Melon-df343de7cca5f89f8e8d825fbcc1a49413412716.tar.gz Melon-df343de7cca5f89f8e8d825fbcc1a49413412716.zip |
Corrections
Diffstat (limited to 'Source/Library/Userland/Binding/Process.class.h')
-rw-r--r-- | Source/Library/Userland/Binding/Process.class.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Library/Userland/Binding/Process.class.h b/Source/Library/Userland/Binding/Process.class.h index 1a1481f..2200f59 100644 --- a/Source/Library/Userland/Binding/Process.class.h +++ b/Source/Library/Userland/Binding/Process.class.h @@ -21,11 +21,11 @@ class Process : public RessourceCaller { void exit() { doCall(PRIF_EXIT); } - void allocPages(u32int pos, u32int count) { - doCall(PRIF_ALLOCPAGES, pos, count); + void allocPages(u32int pos, u32int end) { + doCall(PRIF_ALLOCPAGES, pos, end); } - void freePages(u32int pos, u32int count) { - doCall(PRIF_FREEPAGES, pos, count); + void freePages(u32int pos, u32int end) { + doCall(PRIF_FREEPAGES, pos, end); } u32int getPid() { return doCall(PRIF_GETPID); |