mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2026-03-25 06:31:28 +00:00
Complete documentation coverage: add final module docstrings
Co-authored-by: varun-r-mallya <100590632+varun-r-mallya@users.noreply.github.com>
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
"""
|
||||||
|
DWARF debugging format constants.
|
||||||
|
|
||||||
|
Generated constants from dwarf.h for use in debug information generation.
|
||||||
|
"""
|
||||||
|
|
||||||
# generated constants from dwarf.h
|
# generated constants from dwarf.h
|
||||||
|
|
||||||
DW_UT_compile = 0x01
|
DW_UT_compile = 0x01
|
||||||
|
|||||||
@ -1,3 +1,10 @@
|
|||||||
|
"""
|
||||||
|
Utility functions for handling return statements in BPF functions.
|
||||||
|
|
||||||
|
Provides handlers for different types of returns including XDP actions,
|
||||||
|
None returns, and standard returns.
|
||||||
|
"""
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import ast
|
import ast
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user