diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2002-07-21 06:12:29 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2002-07-21 06:12:29 +0000 |
commit | 1f05f59c77fab69f1881ab474df18b884e0e599c (patch) | |
tree | 24c0baeaa279e86f7e3e5ce459a24a328db64f62 /sys/arch/vax | |
parent | de9682ab698f5235a32886f9edaec5614160bfff (diff) |
Vector 0x0 doesn't seem to be useful, so ignore it for now.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/vax/ka49.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/vax/vax/ka49.c b/sys/arch/vax/vax/ka49.c index 80107401499..d8be3443bc6 100644 --- a/sys/arch/vax/vax/ka49.c +++ b/sys/arch/vax/vax/ka49.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ka49.c,v 1.5 2002/06/11 09:36:24 hugh Exp $ */ +/* $OpenBSD: ka49.c,v 1.6 2002/07/21 06:12:28 hugh Exp $ */ /* * Copyright (c) 1999 Ludd, University of Lule}, Sweden. * All rights reserved. @@ -75,6 +75,9 @@ ka49_conf() /* Why??? */ { volatile int *hej = (void *)mfpr(PR_ISP); *hej = *hej; hej[-1] = hej[-1];} + /* This vector shows up during shutdown, ignore it for now. */ + scb_vecalloc(0x0, (void *)nullop, NULL, SCB_ISTACK, NULL); + /* * Setup parameters necessary to read time from clock chip. */ |