Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Nov 1996 10:52:34 -0700
From:      Steve Passe <smp@csn.net>
To:        Peter Wemm <peter@freefall.freebsd.org>
Cc:        freebsd-smp@freefall.freebsd.org
Subject:   Re: cvs commit: sys/i386/isa icu.s 
Message-ID:  <199611241752.KAA25252@clem.systemsix.com>
In-Reply-To: Your message of "Sun, 24 Nov 1996 01:42:06 PST." <199611240942.BAA06428@freefall.freebsd.org> 

next in thread | previous in thread | raw e-mail | index | archive | help
Hi,

> peter       96/11/24 01:42:03
> 
>   Modified:    i386/isa  icu.s
>   Log:
>   Fix accidental merge spam that broke the PC98 compile

I've been wondering how to attack that PC98 stuff.  Does anyone know if 
there is any chance at all of a PC98 machine running SMP code?

  The specific questions is:

#ifdef PC98
#define ICU_THIS
#else
#define ICU_THAT
#endif

If I then need to conditionalize for APIC_IO should I say NO:

#ifdef APIC_IO

#define APIC_THUS

#else

#ifdef PC98
#define ICU_THIS
#else
#define ICU_THAT
#endif

#endif

or YES:

#ifdef APIC_IO

#ifdef PC98
#define APIC_PC98
#else
#define APIC_PCAT
#endif

#else
 ...
--
Steve Passe	| powered by
smp@csn.net	|            FreeBSD




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199611241752.KAA25252>