
1. Prints Global shared memory & hashtables on console. 2. Provides flexibility to select tables and columns. 3. Provides option to specify handle range. 4. Option to print details of specific handle. Change-Id: I974cb16004328aa81020c008b486b4a78167f7be Signed-off-by: Priyanko Sarkar <quic_priyanko@quicinc.com>
34 lines
667 B
Python
34 lines
667 B
Python
load(":synx_module_build.bzl", "create_module_registry")
|
|
|
|
SYNX_KERNEL_ROOT = "synx-kernel"
|
|
|
|
synx_modules = create_module_registry([":synx_headers"])
|
|
register_synx_module = synx_modules.register
|
|
|
|
register_synx_module(
|
|
name = "synx-driver",
|
|
path = "msm",
|
|
srcs = [
|
|
"synx/synx.c",
|
|
"synx/synx_global.c",
|
|
"synx/synx_util.c",
|
|
"synx/synx_debugfs.c",
|
|
"synx/synx_debugfs_util.c",
|
|
],
|
|
)
|
|
|
|
register_synx_module(
|
|
name = "ipclite",
|
|
path = "msm",
|
|
srcs = [
|
|
"synx/ipclite.c",
|
|
],
|
|
)
|
|
register_synx_module(
|
|
name = "ipclite_test",
|
|
path = "msm",
|
|
srcs = [
|
|
"synx/test/ipclite_test.c",
|
|
],
|
|
)
|