fix signatures of cpu_reset_real and cpu_reset_proxy, broken in r331878
When I moved these functions from i386 and amd64 to x86 I dropped their prototype declarations (that were correct) and left only their definitions that became incorrect. Reported by: bde MFC after: 15 days X-MFC with: r331878
This commit is contained in:
parent
8857481840
commit
b7b25af06a
@ -251,7 +251,7 @@ cpu_halt(void)
|
||||
}
|
||||
|
||||
static void
|
||||
cpu_reset_real()
|
||||
cpu_reset_real(void)
|
||||
{
|
||||
struct region_descriptor null_idt;
|
||||
int b;
|
||||
@ -324,7 +324,7 @@ cpu_reset_real()
|
||||
|
||||
#ifdef SMP
|
||||
static void
|
||||
cpu_reset_proxy()
|
||||
cpu_reset_proxy(void)
|
||||
{
|
||||
|
||||
cpu_reset_proxy_active = 1;
|
||||
@ -338,7 +338,7 @@ cpu_reset_proxy()
|
||||
#endif
|
||||
|
||||
void
|
||||
cpu_reset()
|
||||
cpu_reset(void)
|
||||
{
|
||||
#ifdef SMP
|
||||
cpuset_t map;
|
||||
|
Loading…
Reference in New Issue
Block a user