home *** CD-ROM | disk | FTP | other *** search
- /* @(#)cpu.h 1.0 11/09/86 (c) 1986 NeXT */
-
- /*
- * HISTORY
- *
- * 9 May 1992 David E. Bohman at NeXT
- * Cleaned up.
- * 20 April 1992 David E. Bohman at NeXT
- * Created from 68k version.
- * 09-Nov-86 John Seamons (jks) at NeXT
- * Ported to NeXT.
- *
- */
-
- /*
- * Copyright (c) 1982, 1986 Regents of the University of California.
- * All rights reserved. The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- *
- * @(#)cpu.h 7.1 (Berkeley) 6/5/86
- */
- #ifndef _CPU_
- #define _CPU_
-
- #ifdef KERNEL_BUILD
- #import <cpus.h>
- #else KERNEL_BUILD
- #import <mach/features.h>
- #endif KERNEL_BUILD
-
- #ifdef KERNEL
- int master_cpu;
- #endif KERNEL
-
- #define cpu_number() (0)
-
- #endif _CPU_
-