subr_prf.c (0e42760866c08833f837dea0ac1ebe1f2bd25327) | subr_prf.c (8a129caed5f1b834a2d3f825478f5f0273f9cb9d) |
---|---|
1/*- 2 * Copyright (c) 1986, 1988, 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * (c) UNIX System Laboratories, Inc. 5 * All or some portions of this file are derived from material licensed 6 * to the University of California by American Telephone and Telegraph 7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with 8 * the permission of UNIX System Laboratories, Inc. --- 22 unchanged lines hidden (view full) --- 31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 36 * SUCH DAMAGE. 37 * 38 * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94 | 1/*- 2 * Copyright (c) 1986, 1988, 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * (c) UNIX System Laboratories, Inc. 5 * All or some portions of this file are derived from material licensed 6 * to the University of California by American Telephone and Telegraph 7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with 8 * the permission of UNIX System Laboratories, Inc. --- 22 unchanged lines hidden (view full) --- 31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 36 * SUCH DAMAGE. 37 * 38 * @(#)subr_prf.c 8.3 (Berkeley) 1/21/94 |
39 * $Id: subr_prf.c,v 1.3 1994/08/02 07:42:30 davidg Exp $ | 39 * $Id: subr_prf.c,v 1.4 1994/08/13 14:21:51 davidg Exp $ |
40 */ 41 42#include <sys/param.h> 43#include <sys/systm.h> 44#include <sys/buf.h> 45#include <sys/conf.h> 46#include <sys/reboot.h> 47#include <sys/msgbuf.h> --- 69 unchanged lines hidden (view full) --- 117 118#ifdef KGDB 119 kgdb_panic(); 120#endif 121#ifdef KADB 122 if (boothowto & RB_KDB) 123 kdbpanic(); 124#endif | 40 */ 41 42#include <sys/param.h> 43#include <sys/systm.h> 44#include <sys/buf.h> 45#include <sys/conf.h> 46#include <sys/reboot.h> 47#include <sys/msgbuf.h> --- 69 unchanged lines hidden (view full) --- 117 118#ifdef KGDB 119 kgdb_panic(); 120#endif 121#ifdef KADB 122 if (boothowto & RB_KDB) 123 kdbpanic(); 124#endif |
125#include "ddb.h" 126#if NDDB > 0 | 125#ifdef DDB |
127 Debugger ("panic"); 128#endif 129 boot(bootopt); 130} 131 132/* 133 * Warn that a system table is full. 134 */ --- 473 unchanged lines hidden --- | 126 Debugger ("panic"); 127#endif 128 boot(bootopt); 129} 130 131/* 132 * Warn that a system table is full. 133 */ --- 473 unchanged lines hidden --- |