mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-11 23:51:57 +00:00
We really should have more faith in the compiler, it generates code to implement this exactly like the arch-specific assembly versions, and on ARM is actually 4 bytes shorter. FUNC_NO_FP used to disable the usual C preamble to update the frame/stack pointers, which is how the sizes are still the same or less. It's debatable how useful the occasional use of FUNC_NO_FP is in practice since it hinders debugging and in a production build frame pointers should be globally disabled, but we can address that later. Change-Id: I6c4b64ab3e3a9b6f91d52fa8c92e6e79a986fc77 Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
31 lines
880 B
C
31 lines
880 B
C
/*
|
|
* Copyright (c) 2015 Wind River Systems, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/** @file
|
|
*
|
|
* @brief Per-thread errno accessor function
|
|
*
|
|
* Allow accessing the errno for the current thread without involving the
|
|
* context switching.
|
|
*/
|
|
|
|
#include <nano_private.h>
|
|
|
|
FUNC_NO_FP int *_get_errno(void)
|
|
{
|
|
return &_nanokernel.current->errno_var;
|
|
}
|