add cpu_swapin (nothing needed)
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 6 Jan 1994 01:51:22 +0000 (17:51 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 6 Jan 1994 01:51:22 +0000 (17:51 -0800)
SCCS-vsn: sys/hp300/include/cpu.h 8.4
SCCS-vsn: sys/i386/include/cpu.h 8.4
SCCS-vsn: sys/luna68k/include/cpu.h 8.5
SCCS-vsn: sys/news3400/include/cpu.h 7.6
SCCS-vsn: sys/sparc/include/cpu.h 8.4

usr/src/sys/hp300/include/cpu.h
usr/src/sys/i386/include/cpu.h
usr/src/sys/luna68k/include/cpu.h
usr/src/sys/news3400/include/cpu.h
usr/src/sys/sparc/include/cpu.h

index ca37b2b..df20128 100644 (file)
@@ -11,7 +11,7 @@
  *
  * from: Utah $Hdr: cpu.h 1.16 91/03/25$
  *
  *
  * from: Utah $Hdr: cpu.h 1.16 91/03/25$
  *
- *     @(#)cpu.h       8.3 (Berkeley) %G%
+ *     @(#)cpu.h       8.4 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
@@ -25,6 +25,7 @@
 #define        COPY_SIGCODE            /* copy sigcode above user stack in exec */
 
 #define        cpu_exec(p)                     /* nothing */
 #define        COPY_SIGCODE            /* copy sigcode above user stack in exec */
 
 #define        cpu_exec(p)                     /* nothing */
+#define        cpu_swapin(p)                   /* nothing */
 #define        cpu_wait(p)                     /* nothing */
 #define cpu_setstack(p, ap)            (p)->p_md.md_regs[SP] = ap
 #define cpu_set_init_frame(p, fp)      (p)->p_md.md_regs = fp
 #define        cpu_wait(p)                     /* nothing */
 #define cpu_setstack(p, ap)            (p)->p_md.md_regs[SP] = ap
 #define cpu_set_init_frame(p, fp)      (p)->p_md.md_regs = fp
index 4a82b13..b95f9e3 100644 (file)
@@ -7,7 +7,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)cpu.h       8.3 (Berkeley) %G%
+ *     @(#)cpu.h       8.4 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
@@ -23,6 +23,7 @@
 #undef COPY_SIGCODE    /* don't copy sigcode above user stack in exec */
 
 #define        cpu_exec(p)                     /* nothing */
 #undef COPY_SIGCODE    /* don't copy sigcode above user stack in exec */
 
 #define        cpu_exec(p)                     /* nothing */
+#define        cpu_swapin(p)                   /* nothing */
 #define cpu_setstack(p, ap)            (p)->p_md.md_regs[SP] = ap
 #define cpu_set_init_frame(p, fp)      (p)->p_md.md_regs = fp
 
 #define cpu_setstack(p, ap)            (p)->p_md.md_regs[SP] = ap
 #define cpu_set_init_frame(p, fp)      (p)->p_md.md_regs = fp
 
index 94a0b8b..e161b17 100644 (file)
@@ -13,7 +13,7 @@
  * from: Utah $Hdr: cpu.h 1.16 91/03/25$
  * from: hp300/include/cpu.h   8.2 (Berkeley) 9/23/93
  *
  * from: Utah $Hdr: cpu.h 1.16 91/03/25$
  * from: hp300/include/cpu.h   8.2 (Berkeley) 9/23/93
  *
- *     @(#)cpu.h       8.4 (Berkeley) %G%
+ *     @(#)cpu.h       8.5 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
@@ -28,6 +28,7 @@
 #define        COPY_SIGCODE            /* copy sigcode above user stack in exec */
 
 #define        cpu_exec(p)                     /* nothing */
 #define        COPY_SIGCODE            /* copy sigcode above user stack in exec */
 
 #define        cpu_exec(p)                     /* nothing */
+#define        cpu_swapin(p)                   /* nothing */
 #define        cpu_wait(p)                     /* nothing */
 #define cpu_setstack(p, ap)            (p)->p_md.md_regs[SP] = ap
 #define cpu_set_init_frame(p, fp)      (p)->p_md.md_regs = fp
 #define        cpu_wait(p)                     /* nothing */
 #define cpu_setstack(p, ap)            (p)->p_md.md_regs[SP] = ap
 #define cpu_set_init_frame(p, fp)      (p)->p_md.md_regs = fp
index 4d7e123..f565359 100644 (file)
@@ -8,7 +8,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)cpu.h       7.5 (Berkeley) %G%
+ *     @(#)cpu.h       7.6 (Berkeley) %G%
  */
 
 #ifndef _CPU_H_
  */
 
 #ifndef _CPU_H_
@@ -27,6 +27,7 @@
 #define        COPY_SIGCODE            /* copy sigcode above user stack in exec */
 
 #define        cpu_exec(p)             (p->p_md.md_ss_addr = 0) /* init single step */
 #define        COPY_SIGCODE            /* copy sigcode above user stack in exec */
 
 #define        cpu_exec(p)             (p->p_md.md_ss_addr = 0) /* init single step */
+#define        cpu_swapin(p)           /* nothing */
 #define        cpu_wait(p)             /* nothing */
 #define cpu_setstack(p, ap)    (p)->p_md.md_regs[SP] = ap
 #define cpu_set_init_frame(p, fp) (p)->p_md.md_regs = fp
 #define        cpu_wait(p)             /* nothing */
 #define cpu_setstack(p, ap)    (p)->p_md.md_regs[SP] = ap
 #define cpu_set_init_frame(p, fp) (p)->p_md.md_regs = fp
index 24e3f69..8e4a966 100644 (file)
@@ -13,7 +13,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)cpu.h       8.3 (Berkeley) %G%
+ *     @(#)cpu.h       8.4 (Berkeley) %G%
  *
  * from: $Header: cpu.h,v 1.12 93/05/25 10:36:34 torek Exp $ (LBL)
  */
  *
  * from: $Header: cpu.h,v 1.12 93/05/25 10:36:34 torek Exp $ (LBL)
  */
@@ -45,6 +45,7 @@
 #define        COPY_SIGCODE            /* copy sigcode above user stack in exec */
 
 #define        cpu_exec(p)             /* nothing */
 #define        COPY_SIGCODE            /* copy sigcode above user stack in exec */
 
 #define        cpu_exec(p)             /* nothing */
+#define        cpu_swapin(p)           /* nothing */
 #define        cpu_wait(p)             /* nothing */
 #define        cpu_setstack(p, ap)     ((p)->p_md.md_tf->tf_out[6] = (ap) - 64)
 
 #define        cpu_wait(p)             /* nothing */
 #define        cpu_setstack(p, ap)     ((p)->p_md.md_tf->tf_out[6] = (ap) - 64)