Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/18/84; site tardis.UUCP Path: utzoo!watmath!clyde!bonnie!akgua!whuxlm!harpo!decvax!genrad!panda!talcott!wjh12!tardis!rst From: rst@tardis.UUCP (Robert Thau) Newsgroups: net.bugs.2bsd Subject: More fun with adb Message-ID: <117@tardis.UUCP> Date: Fri, 15-Feb-85 09:59:22 EST Article-I.D.: tardis.117 Posted: Fri Feb 15 09:59:22 1985 Date-Received: Mon, 18-Feb-85 04:46:53 EST Organization: Harvard University, Cruft Lab (TARDIS) Lines: 39 A few more changes are required if you want to interpret crash dumps of networking kernels with adb. To wit, all occurences of the address of the end of the u. area, formerly 0142000, should be changed to 0144000 (#ifdeffed on UCB_NET of course). The changes are: in print.c, change IF kernel? ((unsigned)frame>(unsigned)0142000): to #ifdef UCB_NET IF kernel? ((unsigned)frame>(unsigned)0144000): #else IF kernel? ((unsigned)frame>(unsigned)0142000): #endif ------------------ in setup.c, change datmap.e2 = 0142000L; to #ifdef UCB_NET datmap.e2 = 0144000L; #else datmap.e2 = 0142000L; #endif and change if ((ar0>(POS *)0140000) & (ar0<(POS *)0142000) to #ifdef UCB_NET if ((ar0>(POS *)0140000) & (ar0<(POS *)0144000) #else if ((ar0>(POS *)0140000) & (ar0<(POS *)0142000) #endif -------- rst