diff options
author | Alexis211 <alexis211@gmail.com> | 2009-12-09 15:48:39 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-12-09 15:48:39 +0100 |
commit | 7471d467fed21671f2f4549446249de7e3a7d578 (patch) | |
tree | fd643abf459e2d8dae9957c18a812ef6c423f587 /Source/Library/Userland/Binding/Process.class.h | |
parent | 7c6d20a31acfa2c7ff8c6cec42257af0058f1b7f (diff) | |
download | Melon-7471d467fed21671f2f4549446249de7e3a7d578.tar.gz Melon-7471d467fed21671f2f4549446249de7e3a7d578.zip |
Change on memory handling, and .iface.h files documented.
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 948d670..523be79 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 allocPage(u32int pos) { - doCall(PRIF_ALLOCPAGE, pos); + void allocPages(u32int pos, u32int count) { + doCall(PRIF_ALLOCPAGES, pos, count); } - void freePage(u32int pos) { - doCall(PRIF_FREEPAGE, pos); + void freePages(u32int pos, u32int count) { + doCall(PRIF_FREEPAGES, pos, count); } u32int getPid() { return doCall(PRIF_GETPID); |