7145589: First JSDT provider creation fails
Summary: 0 is a successful return from an ioctl() call
Reviewed-by: dcubed, phh, dsamersoff
--- a/hotspot/src/share/vm/runtime/dtraceJSDT.cpp Tue Feb 14 15:52:17 2012 -0500
+++ b/hotspot/src/share/vm/runtime/dtraceJSDT.cpp Tue Feb 14 20:02:19 2012 -0500
@@ -82,7 +82,7 @@
int handle = pd_activate((void*)probes,
module_name, providers_count, providers);
- if (handle <= 0) {
+ if (handle < 0) {
delete probes;
THROW_MSG_0(vmSymbols::java_lang_RuntimeException(),
"Unable to register DTrace probes (internal error).");