genode/repos/base-sel4/src/include/base/internal/lock_helper.h
Norman Feske e6729316ff base: uniform base-internal header structure
This patch establishes a common organization of header files
internal to the base framework. The internal headers are located at
'<repository>/src/include/base/internal/'. This structure has been
choosen to make the nature of those headers immediately clear when
included:

  #include <base/internal/lock_helper.h>

Issue #1832
2016-03-07 12:34:45 +01:00

22 lines
476 B
C

/*
* \brief seL4-specific helper functions for the Lock implementation
* \author Norman Feske
* \date 2015-05-07
*
* Based on the lock implementation of base-fiasco/src/base/lock/.
*/
/*
* Copyright (C) 2015 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
/* seL4 includes */
#include <sel4/sel4.h>
static inline void thread_yield() { seL4_Yield(); }