--- old/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java Wed Sep 21 11:38:04 2011 +++ new/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java Wed Sep 21 11:38:04 2011 @@ -37,6 +37,14 @@ return "solaris"; } else if (os.equals("Linux")) { return "linux"; + } else if (os.equals("FreeBSD")) { + return "bsd"; + } else if (os.equals("NetBSD")) { + return "bsd"; + } else if (os.equals("OpenBSD")) { + return "bsd"; + } else if (os.equals("Darwin")) { + return "bsd"; } else if (os.startsWith("Windows")) { return "win32"; } else {