aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/runtime/interfaceSupport.hpp
diff options
context:
space:
mode:
authornever <none@none>2011-09-25 16:03:29 -0700
committernever <none@none>2011-09-25 16:03:29 -0700
commitd8e495b18528cce78e3d0af19103f327a15c989e (patch)
treeb819735f7d53af887ecae0edc46fba2e224cb04e /src/share/vm/runtime/interfaceSupport.hpp
parent6fae476aa1c5b5756857057fef6daee3d874c245 (diff)
downloadjdk8u_hotspot-d8e495b18528cce78e3d0af19103f327a15c989e.tar.gz
7089790: integrate bsd-port changes
Reviewed-by: kvn, twisti, jrose Contributed-by: Kurt Miller <kurt@intricatesoftware.com>, Greg Lewis <glewis@eyesbeyond.com>, Jung-uk Kim <jkim@freebsd.org>, Christos Zoulas <christos@zoulas.com>, Landon Fuller <landonf@plausible.coop>, The FreeBSD Foundation <board@freebsdfoundation.org>, Michael Franz <mvfranz@gmail.com>, Roger Hoover <rhoover@apple.com>, Alexander Strange <astrange@apple.com>
Diffstat (limited to 'src/share/vm/runtime/interfaceSupport.hpp')
-rw-r--r--src/share/vm/runtime/interfaceSupport.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/share/vm/runtime/interfaceSupport.hpp b/src/share/vm/runtime/interfaceSupport.hpp
index b11900603..90c0db34d 100644
--- a/src/share/vm/runtime/interfaceSupport.hpp
+++ b/src/share/vm/runtime/interfaceSupport.hpp
@@ -44,6 +44,9 @@
#ifdef TARGET_OS_FAMILY_windows
# include "thread_windows.inline.hpp"
#endif
+#ifdef TARGET_OS_FAMILY_bsd
+# include "thread_bsd.inline.hpp"
+#endif
// Wrapper for all entry points to the virtual machine.
// The HandleMarkCleaner is a faster version of HandleMark.
@@ -115,6 +118,9 @@ class InterfaceSupport: AllStatic {
#ifdef TARGET_OS_FAMILY_windows
# include "interfaceSupport_windows.hpp"
#endif
+#ifdef TARGET_OS_FAMILY_bsd
+# include "interfaceSupport_bsd.hpp"
+#endif
};