Merge "Fixed debugger for threads attached from JNI"
diff --git a/runtime/thread.cc b/runtime/thread.cc
index 83c4e03..f93b15b 100644
--- a/runtime/thread.cc
+++ b/runtime/thread.cc
@@ -409,6 +409,11 @@
     }
   }
 
+  {
+    ScopedObjectAccess soa(self);
+    Dbg::PostThreadStart(self);
+  }
+
   return self;
 }