/* * Copyright 2012-2014, Haiku, Inc. All Rights Reserved. * Distributed under the terms of the MIT License. * * Authors: * Jerome Duval * Alexander von Gluck IV */ #include #include #include "syscalls.h" thread_id find_thread(const char *name) { return _kern_find_thread(name); } /* * Fill out gcc __sync_synchronize built-in for ARM */ void __sync_synchronize(void) { dmb(); }