spawn_kernel_thread_etc() has one more argument now.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11623 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-03-08 18:18:55 +00:00
parent 6c2560b50e
commit fe99e18c3c

View File

@ -1185,7 +1185,7 @@ TRACE(("install_team_debugger(team: %ld, port: %ld, default: %d, "
if (error == B_OK) {
snprintf(nameBuffer, sizeof(nameBuffer), "team %ld debug task", teamID);
nubThread = spawn_kernel_thread_etc(debug_nub_thread, nameBuffer,
B_NORMAL_PRIORITY, NULL, teamID);
B_NORMAL_PRIORITY, NULL, teamID, -1);
if (nubThread < 0)
error = nubThread;
}