_kfind_thread_() is now correctly implemented.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6872 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-03-03 01:03:31 +00:00
parent acfdb017dd
commit 57ffd61845
1 changed files with 2 additions and 6 deletions

View File

@ -1,11 +1,10 @@
/*
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#include <OS.h>
#include <stdio.h>
#include "syscalls.h"
@ -15,8 +14,5 @@ thread_id _kfind_thread_(const char *name);
thread_id
_kfind_thread_(const char *name)
{
// ToDo: _kfind_thread_()
printf("find_thread(): Not yet implemented!!\n");
return B_ERROR;
return _kern_find_thread(name);
}