XThread bool guest thread

This commit is contained in:
Dr. Chat
2015-07-05 13:37:10 -05:00
parent 6bb5b002e0
commit 4fdebd530f
4 changed files with 10 additions and 6 deletions

View File

@@ -206,7 +206,7 @@ X_STATUS XUserModule::Launch(uint32_t flags) {
// Create a thread to run in.
auto thread = object_ref<XThread>(
new XThread(kernel_state(), stack_size_, 0, entry_point_, 0, 0));
new XThread(kernel_state(), stack_size_, 0, entry_point_, 0, 0, true));
X_STATUS result = thread->Create();
if (XFAILED(result)) {