kern_ktr.c (b89daf89a80faa1fcd9b67b0433b7b119eba8279) kern_ktr.c (d39d4a6e6412f88225d1b78c8a797ab82daac250)
1/*-
2 * Copyright (c) 2000 John Baldwin <jhb@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

277 db_ktr_verbose = 1;
278 else
279 db_ktr_verbose = 0;
280 if (strcmp(modif, "a") == 0) {
281 while (cncheckc() != -1)
282 if (db_mach_vtrace() == 0)
283 break;
284 } else {
1/*-
2 * Copyright (c) 2000 John Baldwin <jhb@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

277 db_ktr_verbose = 1;
278 else
279 db_ktr_verbose = 0;
280 if (strcmp(modif, "a") == 0) {
281 while (cncheckc() != -1)
282 if (db_mach_vtrace() == 0)
283 break;
284 } else {
285 db_setup_paging(db_simple_pager, &quit, DB_LINES_PER_PAGE);
285 db_setup_paging(db_simple_pager, &quit, db_lines_per_page);
286 while (!quit)
287 if (db_mach_vtrace() == 0)
288 break;
289 }
290}
291
292static int
293db_mach_vtrace(void)

--- 37 unchanged lines hidden ---
286 while (!quit)
287 if (db_mach_vtrace() == 0)
288 break;
289 }
290}
291
292static int
293db_mach_vtrace(void)

--- 37 unchanged lines hidden ---