Only build this on i386 for now. I may use it for the alpha later but

currently it doesn't compile.
This commit is contained in:
Doug Rabson 1998-06-11 07:23:59 +00:00
parent bcb4edfc14
commit 3900ddb2dc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36887

View File

@ -23,10 +23,17 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: kern_intr.c,v 1.14 1998/04/17 04:53:39 bde Exp $
* $Id: kern_intr.c,v 1.15 1998/06/07 17:11:34 dfr Exp $
*
*/
#ifdef __i386__
/*
* This file is pretty i386 specific. I might be able to make it more
* portable in the future but for now turn it off for non-i386 ports.
*/
#include <sys/types.h>
#include <sys/malloc.h>
#include <sys/systm.h>
@ -430,3 +437,5 @@ unregister_intr(int intr, inthand2_t handler)
return (intr_destroy(p));
return (EINVAL);
}
#endif /* __i386__ */