diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-08-26 20:46:43 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-08-26 20:46:43 +0000 |
| commit | 512644a44dcb215c28f4d5a24c1e6173c99bf090 (patch) | |
| tree | 58560a5835a06d90fb647831b9a8774875bbdbe1 | |
| parent | fadc51bdc6f82372179a23058f27786d4559f3b0 (diff) | |
Notes
| -rw-r--r-- | sys/i386/include/spl.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/i386/include/spl.h b/sys/i386/include/spl.h index 5cbffeb3110b4..5c4e49a4362c3 100644 --- a/sys/i386/include/spl.h +++ b/sys/i386/include/spl.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: spl.h,v 1.9 1995/08/08 04:50:50 dyson Exp $ + * $Id: spl.h,v 1.10 1995/08/09 02:39:32 dyson Exp $ */ #ifndef _MACHINE_IPL_H_ @@ -94,8 +94,6 @@ extern unsigned tty_imask; /* group of interrupts masked with spltty() */ #define schedsofttty() (*(unsigned *)&idelayed |= SWI_TTY_PENDING) -void unpend_V __P((void)); - #ifdef __GNUC__ void splz __P((void)); @@ -105,7 +103,7 @@ static __inline int name(void) \ { \ unsigned x; \ \ - __asm __volatile("":::"memory"); \ + __asm __volatile("" : : : "memory"); \ x = cpl; \ set_cpl; \ return (x); \ |
