ProbeVue is a programming language created in 2008.
#1770on PLDB | 16Years Old |
ProbeVue is IBM's implementation of a lightweight dynamic tracing environment introduced in AIX version 6.1. ProbeVue provides the ability to probe running processes in order to provide statistical analysis as well as retrieve data from the probed process. The dynamic nature of ProbeVue allows it to be used as a global system performance tool while retaining the ability to drill into very specific events on a single process or thread. Read more on Wikipedia...
@@syscall:*:read:entry
when ( __pid == 123456)
{
/* This is a comment: The process with a PID of 123456 has called read(); */
printf("read() system call entered.\n");
}
Feature | Supported | Example | Token |
---|---|---|---|
Comments | ✓ | /* A comment */ | |
MultiLine Comments | ✓ | /* A comment */ | /* */ |
Semantic Indentation | X |