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