Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions arch/ish/include/emu/exec.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#ifndef __ISH_EXEC_H
#define __ISH_EXEC_H

struct emu;
struct emu_mm;
struct pt_regs;

extern int emu_run_to_interrupt(struct emu *emu, struct pt_regs *regs);
extern void emu_poke_cpu(int cpu);

Expand Down
4 changes: 2 additions & 2 deletions arch/ish/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "time_user.h"
#include "threads_user.h"

void __init smp_prepare_boot_cpu()
void __init smp_prepare_boot_cpu(void)
{
}

Expand Down Expand Up @@ -91,7 +91,7 @@ static irqreturn_t ipi_irq(int irq, void *dev)
return IRQ_HANDLED;
}

void smp_send_stop()
void smp_send_stop(void)
{
printk("TODO: actually stop the threads\n");
}
Expand Down