uipc_debug.c (94df6fad) uipc_debug.c (7325dfbb)
1/*-
2 * Copyright (c) 2007 Robert N. M. Watson
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

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

456
457 db_print_indent(indent);
458 db_printf("so_head: %p ", so->so_head);
459 db_printf("so_incomp first: %p ", TAILQ_FIRST(&so->so_incomp));
460 db_printf("so_comp first: %p\n", TAILQ_FIRST(&so->so_comp));
461
462 db_print_indent(indent);
463 /* so_list skipped */
1/*-
2 * Copyright (c) 2007 Robert N. M. Watson
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

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

456
457 db_print_indent(indent);
458 db_printf("so_head: %p ", so->so_head);
459 db_printf("so_incomp first: %p ", TAILQ_FIRST(&so->so_incomp));
460 db_printf("so_comp first: %p\n", TAILQ_FIRST(&so->so_comp));
461
462 db_print_indent(indent);
463 /* so_list skipped */
464 db_printf("so_qlen: %d ", so->so_qlen);
465 db_printf("so_incqlen: %d ", so->so_incqlen);
466 db_printf("so_qlimit: %d ", so->so_qlimit);
464 db_printf("so_qlen: %u ", so->so_qlen);
465 db_printf("so_incqlen: %u ", so->so_incqlen);
466 db_printf("so_qlimit: %u ", so->so_qlimit);
467 db_printf("so_timeo: %d ", so->so_timeo);
468 db_printf("so_error: %d\n", so->so_error);
469
470 db_print_indent(indent);
471 db_printf("so_sigio: %p ", so->so_sigio);
472 db_printf("so_oobmark: %lu ", so->so_oobmark);
473 db_printf("so_aiojobq first: %p\n", TAILQ_FIRST(&so->so_aiojobq));
474

--- 56 unchanged lines hidden ---
467 db_printf("so_timeo: %d ", so->so_timeo);
468 db_printf("so_error: %d\n", so->so_error);
469
470 db_print_indent(indent);
471 db_printf("so_sigio: %p ", so->so_sigio);
472 db_printf("so_oobmark: %lu ", so->so_oobmark);
473 db_printf("so_aiojobq first: %p\n", TAILQ_FIRST(&so->so_aiojobq));
474

--- 56 unchanged lines hidden ---