Deleted Added
full compact
db_examine.c (36760) db_examine.c (36849)
1/*
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the

--- 9 unchanged lines hidden (view full) ---

18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 *
1/*
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the

--- 9 unchanged lines hidden (view full) ---

18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 *
26 * $Id: db_examine.c,v 1.18 1998/06/07 17:09:37 dfr Exp $
26 * $Id: db_examine.c,v 1.19 1998/06/08 08:43:19 dfr Exp $
27 */
28
29/*
30 * Author: David B. Golub, Carnegie Mellon University
31 * Date: 7/90
32 */
33#include <sys/param.h>
34

--- 217 unchanged lines hidden (view full) ---

252 db_expr_t dummy3;
253 char * dummy4;
254{
255 int t;
256 db_addr_t addr;
257 int size;
258 db_expr_t value;
259 db_expr_t mask;
27 */
28
29/*
30 * Author: David B. Golub, Carnegie Mellon University
31 * Date: 7/90
32 */
33#include <sys/param.h>
34

--- 217 unchanged lines hidden (view full) ---

252 db_expr_t dummy3;
253 char * dummy4;
254{
255 int t;
256 db_addr_t addr;
257 int size;
258 db_expr_t value;
259 db_expr_t mask;
260 unsigned int count;
260 db_expr_t count;
261
262 t = db_read_token();
263 if (t == tSLASH) {
264 t = db_read_token();
265 if (t != tIDENT) {
266 bad_modifier:
267 db_printf("Bad modifier\n");
268 db_flush_lex();

--- 64 unchanged lines hidden ---
261
262 t = db_read_token();
263 if (t == tSLASH) {
264 t = db_read_token();
265 if (t != tIDENT) {
266 bad_modifier:
267 db_printf("Bad modifier\n");
268 db_flush_lex();

--- 64 unchanged lines hidden ---