An open API service indexing awesome lists of open source software.

https://github.com/kaedea/junwind

Get Java thread's stacktrace by native tid.
https://github.com/kaedea/junwind

Last synced: 11 months ago
JSON representation

Get Java thread's stacktrace by native tid.

Awesome Lists containing this project

README

          

# junwind
Get Java thread's stacktrace by native tid.

## Getting Started

```java
// 1. Get current thread's stacktrace.
String callStack = JUnwind.jUnwindCurr();

// 2. Get other thread's stacktrace by tid.
int tid = ...;
String callStack = JUnwind.jUnwind(tid);
```