src/solaris/bin/java_md_solinux.c::SetJavaLauncherPlatformProps(linux)
void SetJavaLauncherPlatformProps() {
#ifdef __linux__
const char *substr = "-Dsun.java.launcher.pid=";
char *pid_prop_str = (char *)JLI_MemAlloc(JLI_StrLen(substr) + MAX_PID_STR_SZ + 1);
sprintf(pid_prop_str, "%s%d", substr, getpid());
AddOption(pid_prop_str, NULL);
#endif
}
src/macosx/bin/java_md_macosx.c::SetJavaLauncherPlatformProps(mac)
void SetJavaLauncherPlatformProps() {
}
src/windows/bin/java_md.c::SetJavaLauncherPlatformProps(windows)
void SetJavaLauncherPlatformProps() {}