All Downloads are FREE. Search and download functionalities are using the official Maven repository.

samples.jthread.d Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
#!/usr/sbin/dtrace -s

btrace$1:::event 
/ 
  copyinstr(arg0) == "jthreadstart" &&
  arg1 != NULL
/
{
  printf("From DTrace: Java Thread '%s' started\n", copyinstr(arg1));
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy