exit_thread() was using _kern_exit() instead of _kern_exit_thread().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10324 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-12-01 04:10:12 +00:00
parent b385f97e3e
commit 2f9720f07d
1 changed files with 4 additions and 5 deletions

View File

@ -1,7 +1,7 @@
/*
** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
* Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <OS.h>
@ -95,8 +95,7 @@ void
exit_thread(status_t status)
{
_thread_do_exit_notification();
_kern_exit(status);
_kern_exit_thread(status);
}