Added prototypes for cpu_swapin(), cpu_swapout(), tlbflush()

cpu_set_kpc() and need_resched().
This commit is contained in:
mark 1996-04-26 21:12:36 +00:00
parent 38b0e06483
commit 504699a05d
1 changed files with 10 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.6 1996/04/02 21:45:25 mark Exp $ */
/* $NetBSD: cpu.h,v 1.7 1996/04/26 21:12:36 mark Exp $ */
/*
* Copyright (c) 1994-1996 Mark Brinicombe.
@ -192,6 +192,15 @@
#define cpu_wait(p) /* nothing */
#ifndef _LOCORE
void cpu_swapin __P((struct proc *p));
void cpu_swapout __P((struct proc *p));
void tlbflush __P(());
void need_resched __P(());
void need_proftick __P((struct proc *p));
void cpu_set_kpc __P((struct proc *p, void *pc));
#endif
/*
* Notify the current process (p) that it has a signal pending,
* process as soon as possible.