diff options
author | Bruce Evans <bde@FreeBSD.org> | 1999-02-22 15:13:34 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1999-02-22 15:13:34 +0000 |
commit | 025a06fd5827cea8ca2d8ba951657f39d013c476 (patch) | |
tree | 49a1971343011318cef9dd5614c446bd0682c342 /sys/i386/include/globaldata.h | |
parent | 3854f9f544961eccf4657b4f4c82e3f8160e6329 (diff) |
Added a per-cpu variable `switchticks' for use in scheduling.
Notes
Notes:
svn path=/head/; revision=44215
Diffstat (limited to 'sys/i386/include/globaldata.h')
-rw-r--r-- | sys/i386/include/globaldata.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/i386/include/globaldata.h b/sys/i386/include/globaldata.h index e182d0a8af51..ec5879940ecd 100644 --- a/sys/i386/include/globaldata.h +++ b/sys/i386/include/globaldata.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: globaldata.h,v 1.5 1998/05/28 09:30:02 phk Exp $ + * $Id: globaldata.h,v 1.6 1998/08/18 07:47:12 msmith Exp $ */ /* @@ -44,6 +44,7 @@ struct globaldata { struct pcb *curpcb; struct i386tss common_tss; struct timeval switchtime; + int switchticks; #ifdef VM86 struct segment_descriptor common_tssd; u_int private_tss; |