Files
python-bpf/pythonbpf/vmlinux_parser/vmlinux_class_handler.py

9 lines
184 B
Python

import ast
import logging
logger = logging.getLogger(__name__)
def process_vmlinux_class(node, module, vmlinux_types):
# Process ClassDef nodes that use vmlinux imports
pass