diff options
author | 2021-10-07 15:15:08 +0100 | |
---|---|---|
committer | 2021-10-08 10:27:29 +0000 | |
commit | 4d29efcc54c2d98e70e2221b66c04f309d64c398 (patch) | |
tree | 80ac62421103eecfaa8760b7f8507801b97cd2b1 /runtime/entrypoints_order_test.cc | |
parent | f9e82e5cae2c31f439ecbc505c2dcac81356405e (diff) |
Remove unused fields in Thread.
Test: test.py
Change-Id: Iafc0be23eec86102844b127622be564f69c55eda
Diffstat (limited to 'runtime/entrypoints_order_test.cc')
-rw-r--r-- | runtime/entrypoints_order_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/entrypoints_order_test.cc b/runtime/entrypoints_order_test.cc index cd43aaf676..73f97bc60b 100644 --- a/runtime/entrypoints_order_test.cc +++ b/runtime/entrypoints_order_test.cc @@ -70,7 +70,7 @@ class EntrypointsOrderTest : public CommonRuntimeTest { EXPECT_OFFSET_DIFFP(Thread, tls32_, daemon, throwing_OutOfMemoryError, 4); EXPECT_OFFSET_DIFFP(Thread, tls32_, throwing_OutOfMemoryError, no_thread_suspension, 4); EXPECT_OFFSET_DIFFP(Thread, tls32_, no_thread_suspension, thread_exit_check_count, 4); - EXPECT_OFFSET_DIFFP(Thread, tls32_, thread_exit_check_count, handling_signal_, 4); + EXPECT_OFFSET_DIFFP(Thread, tls32_, thread_exit_check_count, is_transitioning_to_runnable, 4); // TODO: Better connection. Take alignment into account. EXPECT_OFFSET_DIFF_GT3(Thread, tls32_.thread_exit_check_count, tls64_.trace_clock_base, 4, |