diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-06 16:29:47 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-09 00:34:53 +0900 |
commit | 894bc2481af492e85dc5718b847937868e475379 (patch) | |
tree | 17696f3365e174cbee1be68cc6a6d41a164e28e4 /vm/vm_pageout.h | |
parent | cc206bc51a08eb4c2a4908697c3585c44a91a8e9 (diff) | |
download | gnumach-894bc2481af492e85dc5718b847937868e475379.tar.gz gnumach-894bc2481af492e85dc5718b847937868e475379.tar.bz2 gnumach-894bc2481af492e85dc5718b847937868e475379.zip |
vm/vm_pageout.c: remove forward declarations
* vm/vm_pageout.c (vm_pageout_continue, vm_pageout_scan_continue): Remove forward declarations.
* vm/vm_pageout.h (vm_pageout_continue, vm_pageout_scan_continue): Add prototypes.
Diffstat (limited to 'vm/vm_pageout.h')
-rw-r--r-- | vm/vm_pageout.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vm/vm_pageout.h b/vm/vm_pageout.h index 90e45a77..7e3e4e47 100644 --- a/vm/vm_pageout.h +++ b/vm/vm_pageout.h @@ -46,4 +46,8 @@ extern void vm_pageout_page(vm_page_t, boolean_t, boolean_t); extern void vm_pageout(void); +extern void vm_pageout_continue(void); + +extern void vm_pageout_scan_continue(void); + #endif /* _VM_VM_PAGEOUT_H_ */ |