/* * Copyright (c) 2014-2015 embedded brains GmbH. All rights reserved. * * embedded brains GmbH * Dornierstr. 4 * 82178 Puchheim * Germany * * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ #if HAVE_CONFIG_H #include "config.h" #endif #include #include #include #if defined( RTEMS_DEBUG ) bool _Debug_Is_owner_of_allocator( void ) { API_Mutex_Control *mutex = _RTEMS_Allocator_Mutex; bool owner; if ( mutex != NULL ) { owner = _API_Mutex_Is_owner( mutex ); } else { owner = false; } return owner; } #endif