arch: arm: core: add Cortex-R in the files description headers

arch/arm/core is shared between Cortex-M and Cortex-R, so
enhance the file description headers accordingly.

Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
This commit is contained in:
Ioannis Glaropoulos 2019-10-09 10:37:28 +02:00 committed by Maureen Helm
commit 61c60be302
8 changed files with 15 additions and 12 deletions

View file

@ -6,7 +6,7 @@
/**
* @file
* @brief ARM Cortex-M power management
* @brief ARM Cortex-M and Cortex-R power management
*
*/

View file

@ -6,7 +6,7 @@
/**
* @file
* @brief ARM Cortex-M exception/interrupt exit API
* @brief ARM Cortex-M and Cortex-R exception/interrupt exit API
*
*
* Provides functions for performing kernel handling when exiting exceptions or

View file

@ -6,9 +6,10 @@
/**
* @file
* @brief Kernel fatal error handler for ARM Cortex-M
* @brief Kernel fatal error handler for ARM Cortex-M and Cortex-R
*
* This module provides the z_NanoFatalErrorHandler() routine for ARM Cortex-M.
* This module provides the z_arm_fatal_error() routine for ARM Cortex-M
* and Cortex-R CPUs.
*/
#include <toolchain.h>

View file

@ -6,9 +6,9 @@
/**
* @file
* @brief Fault handlers for ARM Cortex-M
* @brief Fault handlers for ARM Cortex-M and Cortex-R
*
* Fault handlers for ARM Cortex-M processors.
* Fault handlers for ARM Cortex-M and Cortex-R processors.
*/
#include <toolchain.h>

View file

@ -6,7 +6,7 @@
/**
* @file
* @brief ARM Cortex-M interrupt management
* @brief ARM Cortex-M and Cortex-R interrupt management
*
*
* Interrupt management: enabling/disabling and dynamic ISR

View file

@ -6,7 +6,7 @@
/**
* @file
* @brief ARM Cortex-M wrapper for ISRs with parameter
* @brief ARM Cortex-M and Cortex-R wrapper for ISRs with parameter
*
* Wrapper installed in vector table for handling dynamic interrupts that accept
* a parameter.

View file

@ -1,15 +1,16 @@
/*
* Copyright (c) 2013-2014 Wind River Systems, Inc.
* Copyright (c) 2017-2019 Nordic Semiconductor ASA.
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief Thread context switching for ARM Cortex-M
* @brief Thread context switching for ARM Cortex-M and Cortex-R
*
* This module implements the routines necessary for thread context switching
* on ARM Cortex-M CPUs.
* on ARM Cortex-M and Cortex-R CPUs.
*/
#include <toolchain.h>

View file

@ -6,9 +6,10 @@
/**
* @file
* @brief New thread creation for ARM Cortex-M
* @brief New thread creation for ARM Cortex-M and Cortex-R
*
* Core thread related primitives for the ARM Cortex-M processor architecture.
* Core thread related primitives for the ARM Cortex-M and Cortex-R
* processor architecture.
*/
#include <kernel.h>