diff options
Diffstat (limited to 'src/thread.h')
| -rw-r--r-- | src/thread.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/thread.h b/src/thread.h index e37e17aea3..6fbf1d2e4f 100644 --- a/src/thread.h +++ b/src/thread.h @@ -38,6 +38,9 @@ #include "stack.h" #include "trace.h" #include "UniquePtr.h" +#ifdef ART_USE_GREENLAND_COMPILER +#include "greenland/runtime_entry_points.h" +#endif namespace art { @@ -791,6 +794,9 @@ class PACKED Thread { // Runtime support function pointers // TODO: move this near the top, since changing its offset requires all oats to be recompiled! EntryPoints entrypoints_; +#ifdef ART_USE_GREENLAND_COMPILER + RuntimeEntryPoints runtime_entry_points_; +#endif private: // How many times has our pthread key's destructor been called? |