We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 617dba1 commit f9244d6Copy full SHA for f9244d6
malloc_free_check/install.py
@@ -0,0 +1,12 @@
1
+import pathlib
2
+
3
4
+script = pathlib.Path(__file__).resolve().parent / "malloc_free_check.py"
5
6
+print(
7
+ f"""\
8
+The {script.name!r} script can be run outside of UDB:
9
10
+ $ {script} <recording-file>
11
+"""
12
+)
private/manifest.json
@@ -99,6 +99,13 @@
99
],
100
"python_package_dir": "systemc_trace_packages",
101
"version_min": "8.2.0"
102
+ },
103
+ "malloc-free-check": {
104
+ "description": "Tool for detecting memory leaks based on malloc and free calls.",
105
+ "repo": "addons",
106
+ "script": "malloc_free_check/install.py",
107
+ "version_min": "8.3.0",
108
+ "help": "malloc-free.py -- Check for memory leaks based on malloc and free calls."
109
}
110
111
0 commit comments