diff options
| -rw-r--r-- | runtime/base/logging.cc | 2 | ||||
| -rw-r--r-- | runtime/base/timing_logger.cc | 2 | ||||
| -rw-r--r-- | runtime/gc/collector/garbage_collector.cc | 2 | ||||
| -rw-r--r-- | runtime/gc/collector/partial_mark_sweep.cc | 2 | ||||
| -rw-r--r-- | runtime/gc/collector/sticky_mark_sweep.cc | 2 | ||||
| -rw-r--r-- | runtime/gc/space/large_object_space.cc | 2 | ||||
| -rw-r--r-- | runtime/native/dalvik_system_Zygote.cc | 2 | ||||
| -rw-r--r-- | runtime/thread_pool.cc | 2 | ||||
| -rw-r--r-- | runtime/well_known_classes.cc | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/runtime/base/logging.cc b/runtime/base/logging.cc index 7d54bafd9c..3d842a0645 100644 --- a/runtime/base/logging.cc +++ b/runtime/base/logging.cc @@ -18,7 +18,7 @@ #include "base/mutex.h" #include "runtime.h" -#include "thread.h" +#include "thread-inl.h" #include "utils.h" namespace art { diff --git a/runtime/base/timing_logger.cc b/runtime/base/timing_logger.cc index 11dc54271e..6df1126e0a 100644 --- a/runtime/base/timing_logger.cc +++ b/runtime/base/timing_logger.cc @@ -22,7 +22,7 @@ #include "timing_logger.h" #include "base/logging.h" -#include "thread.h" +#include "thread-inl.h" #include "base/stl_util.h" #include "base/histogram-inl.h" diff --git a/runtime/gc/collector/garbage_collector.cc b/runtime/gc/collector/garbage_collector.cc index edfea9489f..6691cadbd4 100644 --- a/runtime/gc/collector/garbage_collector.cc +++ b/runtime/gc/collector/garbage_collector.cc @@ -26,7 +26,7 @@ #include "gc/accounting/heap_bitmap.h" #include "gc/space/large_object_space.h" #include "gc/space/space-inl.h" -#include "thread.h" +#include "thread-inl.h" #include "thread_list.h" namespace art { diff --git a/runtime/gc/collector/partial_mark_sweep.cc b/runtime/gc/collector/partial_mark_sweep.cc index cc3cfe544d..29367ce0bf 100644 --- a/runtime/gc/collector/partial_mark_sweep.cc +++ b/runtime/gc/collector/partial_mark_sweep.cc @@ -19,7 +19,7 @@ #include "gc/heap.h" #include "gc/space/space.h" #include "partial_mark_sweep.h" -#include "thread.h" +#include "thread-inl.h" namespace art { namespace gc { diff --git a/runtime/gc/collector/sticky_mark_sweep.cc b/runtime/gc/collector/sticky_mark_sweep.cc index 19cbe6bae6..9f0bf33387 100644 --- a/runtime/gc/collector/sticky_mark_sweep.cc +++ b/runtime/gc/collector/sticky_mark_sweep.cc @@ -18,7 +18,7 @@ #include "gc/space/large_object_space.h" #include "gc/space/space.h" #include "sticky_mark_sweep.h" -#include "thread.h" +#include "thread-inl.h" namespace art { namespace gc { diff --git a/runtime/gc/space/large_object_space.cc b/runtime/gc/space/large_object_space.cc index 1321b193aa..ab6e42bb2a 100644 --- a/runtime/gc/space/large_object_space.cc +++ b/runtime/gc/space/large_object_space.cc @@ -22,7 +22,7 @@ #include "UniquePtr.h" #include "image.h" #include "os.h" -#include "thread.h" +#include "thread-inl.h" #include "utils.h" namespace art { diff --git a/runtime/native/dalvik_system_Zygote.cc b/runtime/native/dalvik_system_Zygote.cc index 2acacc9959..d065ee4483 100644 --- a/runtime/native/dalvik_system_Zygote.cc +++ b/runtime/native/dalvik_system_Zygote.cc @@ -35,7 +35,7 @@ #include "ScopedLocalRef.h" #include "ScopedPrimitiveArray.h" #include "ScopedUtfChars.h" -#include "thread.h" +#include "thread-inl.h" #if defined(HAVE_PRCTL) #include <sys/prctl.h> diff --git a/runtime/thread_pool.cc b/runtime/thread_pool.cc index 674ab9d9ae..bb6c47538e 100644 --- a/runtime/thread_pool.cc +++ b/runtime/thread_pool.cc @@ -19,7 +19,7 @@ #include "base/casts.h" #include "base/stl_util.h" #include "runtime.h" -#include "thread.h" +#include "thread-inl.h" namespace art { diff --git a/runtime/well_known_classes.cc b/runtime/well_known_classes.cc index 8de020a975..e3946f7209 100644 --- a/runtime/well_known_classes.cc +++ b/runtime/well_known_classes.cc @@ -21,7 +21,7 @@ #include "base/logging.h" #include "mirror/class.h" #include "ScopedLocalRef.h" -#include "thread.h" +#include "thread-inl.h" namespace art { |