.NET
jqa999.txt
Associated article: What Is the Java VM Profiler Interface?
Tags: .NET
Published source code accompanying the article by Andy Wilson in which he examines the Java Virtual Machine Profiler Interface (JVMPI), a tool that lets you build tools that collect events about the state of the virtual machine. These events, in turn, let you gather information about how the VM and your Java application actually run. Also see JQA999.ZIP.
Java Q&A
by Andy Wilson
Listing One
/** JVMPI_Event -- Taken and modified from JVMPI.h */
typedef struct {
jint event_type; /* event_type */
JNIEnv *env_id; /* env where this event occured */
union {
struct {
char *class_name; /* class name */
...


