xref: /haiku/src/system/libroot/os/arch/arm64/thread.c (revision 072d3935c2497638e9c2502f574c133caeba9d3d)
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