summaryrefslogtreecommitdiffstats
path: root/src/runtime/rt_vfs.C
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/rt_vfs.C')
-rw-r--r--src/runtime/rt_vfs.C8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/runtime/rt_vfs.C b/src/runtime/rt_vfs.C
index 73f381313..5477c8ac6 100644
--- a/src/runtime/rt_vfs.C
+++ b/src/runtime/rt_vfs.C
@@ -5,7 +5,7 @@
/* */
/* IBM CONFIDENTIAL */
/* */
-/* COPYRIGHT International Business Machines Corp. 2013 */
+/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
/* p1 */
/* */
@@ -44,7 +44,11 @@ void vfs_module_init()
i < (uint64_t)module->data;
i += PAGESIZE)
{
- g_hostInterfaces->set_page_execute(reinterpret_cast<void*>(i));
+ if (g_hostInterfaces->set_page_execute)
+ {
+ g_hostInterfaces->set_page_execute(
+ reinterpret_cast<void*>(i));
+ }
}
}
OpenPOWER on IntegriCloud