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 | |
parent | cc206bc51a08eb4c2a4908697c3585c44a91a8e9 (diff) |
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.
-rw-r--r-- | vm/vm_pageout.c | 3 | ||||
-rw-r--r-- | vm/vm_pageout.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/vm/vm_pageout.c b/vm/vm_pageout.c index 38195ad..46ba56b 100644 --- a/vm/vm_pageout.c +++ b/vm/vm_pageout.c @@ -159,9 +159,6 @@ #define VM_PAGEOUT_RESERVED_REALLY(reserve) ((reserve) - 40) #endif /* VM_PAGEOUT_RESERVED_REALLY */ -extern void vm_pageout_continue(); -extern void vm_pageout_scan_continue(); - unsigned int vm_pageout_reserved_internal = 0; unsigned int vm_pageout_reserved_really = 0; diff --git a/vm/vm_pageout.h b/vm/vm_pageout.h index 90e45a7..7e3e4e4 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_ */ |