diff options
author | Marvin Borner | 2021-02-25 20:45:10 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-25 20:45:10 +0100 |
commit | a9710cb73cc9ecadaff241428a39a26935cb5c0a (patch) | |
tree | 68f509407bc49a4da43ccadfd9115b9e6f7eb413 /kernel/inc | |
parent | 26587adae4f5ec61d03fd7075805a24b29107fe3 (diff) |
Applied even more warning flags!
Fixing all the warnings wasn't that easy actually..
Diffstat (limited to 'kernel/inc')
-rw-r--r-- | kernel/inc/boot.h | 2 | ||||
-rw-r--r-- | kernel/inc/fs.h | 6 | ||||
-rw-r--r-- | kernel/inc/interrupts.h | 100 | ||||
-rw-r--r-- | kernel/inc/load.h | 2 | ||||
-rw-r--r-- | kernel/inc/proc.h | 6 |
5 files changed, 58 insertions, 58 deletions
diff --git a/kernel/inc/boot.h b/kernel/inc/boot.h index 98e964d..6bacc31 100644 --- a/kernel/inc/boot.h +++ b/kernel/inc/boot.h @@ -6,7 +6,7 @@ #include <def.h> -struct vid_info *boot_passed; +extern struct vid_info *boot_passed; struct vid_info { u32 mode; u32 *vbe; diff --git a/kernel/inc/fs.h b/kernel/inc/fs.h index 868cd3e..33b1afb 100644 --- a/kernel/inc/fs.h +++ b/kernel/inc/fs.h @@ -20,7 +20,7 @@ struct device { void *data; s32 (*read)(void *buf, u32 offset, u32 count, struct device *dev); s32 (*write)(void *buf, u32 offset, u32 count, struct device *dev); - u8 (*ready)(); + u8 (*ready)(void); }; void device_install(void); @@ -41,7 +41,7 @@ struct vfs { s32 (*read)(const char *path, void *buf, u32 offset, u32 count, struct device *dev); s32 (*write)(const char *path, void *buf, u32 offset, u32 count, struct device *dev); s32 (*stat)(const char *path, struct stat *buf, struct device *dev); - s32 (*wait)(const char *path, s32 (*func)(), struct device *dev); + s32 (*wait)(const char *path, u32 func_ptr, struct device *dev); u8 (*perm)(const char *path, enum vfs_perm perm, struct device *dev); u8 (*ready)(const char *path, struct device *dev); }; @@ -61,7 +61,7 @@ struct device *vfs_find_dev(const char *path); s32 vfs_read(const char *path, void *buf, u32 offset, u32 count); s32 vfs_write(const char *path, void *buf, u32 offset, u32 count); s32 vfs_stat(const char *path, struct stat *buf); -s32 vfs_wait(const char *path, s32 (*func)()); +s32 vfs_wait(const char *path, u32 func_ptr); s32 vfs_poll(const char **files); u8 vfs_ready(const char *path); diff --git a/kernel/inc/interrupts.h b/kernel/inc/interrupts.h index 1c475b1..30c91c3 100644 --- a/kernel/inc/interrupts.h +++ b/kernel/inc/interrupts.h @@ -37,56 +37,56 @@ void interrupts_install(void); // External handlers (ASM) -extern void isr0(); -extern void isr1(); -extern void isr2(); -extern void isr3(); -extern void isr4(); -extern void isr5(); -extern void isr6(); -extern void isr7(); -extern void isr8(); -extern void isr9(); -extern void isr10(); -extern void isr11(); -extern void isr12(); -extern void isr13(); -extern void isr14(); -extern void isr15(); -extern void isr16(); -extern void isr17(); -extern void isr18(); -extern void isr19(); -extern void isr20(); -extern void isr21(); -extern void isr22(); -extern void isr23(); -extern void isr24(); -extern void isr25(); -extern void isr26(); -extern void isr27(); -extern void isr28(); -extern void isr29(); -extern void isr30(); -extern void isr31(); -extern void isr128(); +extern void isr0(struct regs *r); +extern void isr1(struct regs *r); +extern void isr2(struct regs *r); +extern void isr3(struct regs *r); +extern void isr4(struct regs *r); +extern void isr5(struct regs *r); +extern void isr6(struct regs *r); +extern void isr7(struct regs *r); +extern void isr8(struct regs *r); +extern void isr9(struct regs *r); +extern void isr10(struct regs *r); +extern void isr11(struct regs *r); +extern void isr12(struct regs *r); +extern void isr13(struct regs *r); +extern void isr14(struct regs *r); +extern void isr15(struct regs *r); +extern void isr16(struct regs *r); +extern void isr17(struct regs *r); +extern void isr18(struct regs *r); +extern void isr19(struct regs *r); +extern void isr20(struct regs *r); +extern void isr21(struct regs *r); +extern void isr22(struct regs *r); +extern void isr23(struct regs *r); +extern void isr24(struct regs *r); +extern void isr25(struct regs *r); +extern void isr26(struct regs *r); +extern void isr27(struct regs *r); +extern void isr28(struct regs *r); +extern void isr29(struct regs *r); +extern void isr30(struct regs *r); +extern void isr31(struct regs *r); +extern void isr128(struct regs *r); -extern void irq0(); -extern void irq1(); -extern void irq2(); -extern void irq3(); -extern void irq4(); -extern void irq5(); -extern void irq6(); -extern void irq7(); -extern void irq8(); -extern void irq9(); -extern void irq10(); -extern void irq11(); -extern void irq12(); -extern void irq13(); -extern void irq14(); -extern void irq15(); -extern void irq128(); +extern void irq0(struct regs *r); +extern void irq1(struct regs *r); +extern void irq2(struct regs *r); +extern void irq3(struct regs *r); +extern void irq4(struct regs *r); +extern void irq5(struct regs *r); +extern void irq6(struct regs *r); +extern void irq7(struct regs *r); +extern void irq8(struct regs *r); +extern void irq9(struct regs *r); +extern void irq10(struct regs *r); +extern void irq11(struct regs *r); +extern void irq12(struct regs *r); +extern void irq13(struct regs *r); +extern void irq14(struct regs *r); +extern void irq15(struct regs *r); +extern void irq128(struct regs *r); #endif diff --git a/kernel/inc/load.h b/kernel/inc/load.h index 422a28c..407fbeb 100644 --- a/kernel/inc/load.h +++ b/kernel/inc/load.h @@ -6,6 +6,6 @@ #include <proc.h> void proc_load(struct proc *proc, void *data); -int bin_load(char *path, struct proc *proc); +int bin_load(const char *path, struct proc *proc); #endif diff --git a/kernel/inc/proc.h b/kernel/inc/proc.h index cd74b40..a232f46 100644 --- a/kernel/inc/proc.h +++ b/kernel/inc/proc.h @@ -30,7 +30,7 @@ struct proc_wait_identifier { u32 magic; u32 id; enum proc_wait_type type; - s32 (*func)(); + u32 func_ptr; }; struct proc_wait { @@ -63,9 +63,9 @@ u8 proc_super(void); struct proc *proc_from_pid(u32 pid); void proc_exit(struct proc *proc, int status); void proc_yield(struct regs *r); -void proc_clear_quantum(); +void proc_clear_quantum(void); void proc_enable_waiting(u32 id, enum proc_wait_type type); -void proc_wait_for(u32 id, enum proc_wait_type type, s32 (*func)()); +void proc_wait_for(u32 id, enum proc_wait_type type, u32 func_ptr); struct proc *proc_make(void); #endif |