From 2f9720f07de610e15a711f9f271337732b08e7f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 1 Dec 2004 04:10:12 +0000 Subject: [PATCH] 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 --- src/kernel/libroot/os/thread.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/kernel/libroot/os/thread.c b/src/kernel/libroot/os/thread.c index ad7e52f672..3fc8076710 100644 --- a/src/kernel/libroot/os/thread.c +++ b/src/kernel/libroot/os/thread.c @@ -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 @@ -95,8 +95,7 @@ void exit_thread(status_t status) { _thread_do_exit_notification(); - - _kern_exit(status); + _kern_exit_thread(status); }