blob: 8a41ef6efab12581d8fdf358af7c78581dc90004 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#
# Copyright (c) 2025 Mark Johnston <markj@FreeBSD.org>
#
# SPDX-License-Identifier: BSD-2-Clause
#
import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), "gdb"))
# Import FreeBSD kernel debugging commands and modules below.
import acttrace
import pcpu
import vnet
|