https://github.com/hellyguo/jvm_agent_mem2csv
jvmti agent, to map memory objects to csv
https://github.com/hellyguo/jvm_agent_mem2csv
ansi-c jvmti jvmti-agent
Last synced: 3 months ago
JSON representation
jvmti agent, to map memory objects to csv
- Host: GitHub
- URL: https://github.com/hellyguo/jvm_agent_mem2csv
- Owner: hellyguo
- License: mit
- Created: 2023-11-02T16:25:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-08T06:49:24.000Z (over 1 year ago)
- Last Synced: 2025-01-06T02:21:19.146Z (5 months ago)
- Topics: ansi-c, jvmti, jvmti-agent
- Language: C
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jvmti agent
jvmti agent, to map memory objects to csv
## doc
- [oracle jdk jvmti doc](https://docs.oracle.com/javase/8/docs/platform/jvmti/jvmti.html)
- [ibm jdk jvmti doc](https://www.ibm.com/docs/en/sdk-java-technology/8?topic=interfaces-jvmti)## build
need to install xmake first.
- build
```shell
xmake
```- build debug
```shell
xmake config -m debug
xmake
```- build release
```shell
xmake config -m release
xmake
```