diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-05 22:03:58 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-09 00:27:58 +0900 |
commit | 94c96554e093f4b6cc947125f60e8da39031f08c (patch) | |
tree | 08d25c95d8899724bfaf0723c131e51d3f3f59af /kern/boot_script.h | |
parent | b848914aac388e82948aa2b277c5a1edf3de158d (diff) | |
download | gnumach-94c96554e093f4b6cc947125f60e8da39031f08c.tar.gz gnumach-94c96554e093f4b6cc947125f60e8da39031f08c.tar.bz2 gnumach-94c96554e093f4b6cc947125f60e8da39031f08c.zip |
Cleanup of the prototypes
* device/cirbuf.h (nqdb): Remove prototype without definition.
* device/conf.h (dev_set_indirect): Likewise.
* kern/boot_script.h (boot_script_read_file): Likewise.
* kern/eventcount.h (evc_notify_abort): Remove duplicate prototype.
* kern/thread.h (thread_set_own_priority): Likewise.
* kern/thread_swap.h (thread_swapout): Remove prototype without definition.
* kern/timer.h (softclock): Remove duplicate prototype.
* vm/pmap.h (pmap_resident_count, pmap_access, pmap_phys_address, pmap_phys_to_frame): Remove prototypes without function definition.
* vm/vm_page.h (vm_set_page_size): Likewise.
Diffstat (limited to 'kern/boot_script.h')
-rw-r--r-- | kern/boot_script.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kern/boot_script.h b/kern/boot_script.h index c5ad6732..c007d777 100644 --- a/kern/boot_script.h +++ b/kern/boot_script.h @@ -69,10 +69,6 @@ int boot_script_exec_cmd (void *hook, task_t task, char *path, int argc, char **argv, char *strings, int stringlen); -/* The user must define this function. Load the contents of FILE - into a fresh anonymous memory object and return the memory object port. */ -mach_port_t boot_script_read_file (const char *file); - /* The user must define this functions to perform the corresponding Mach task manipulations. */ int boot_script_task_create (struct cmd *); /* task_create + task_suspend */ |