xref: /haiku/src/system/libroot/os/arch/arm64/thread.c (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
1 /*
2  * Copyright 2019 Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <OS.h>
8 #include "syscalls.h"
9 
10 
11 thread_id
12 find_thread(const char *name)
13 {
14 	return _kern_find_thread(name);
15 }
16