mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 00:41:55 +00:00
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2011-2012, 2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Stack frame created by swap (IA-32)
|
|
*
|
|
* This file details the stack frame generated by _Swap() when it saves a task
|
|
* or fiber's context. This is specific to the IA-32 processor architecture.
|
|
*
|
|
* NOTE: _Swap() does not use this file as it uses the push instruction to
|
|
* save a context. Changes to the file will not automatically be picked up by
|
|
* _Swap(). Conversely, changes to _Swap() should be mirrored here if the
|
|
* stack frame is modified.
|
|
*/
|
|
|
|
#ifndef _SWAPSTK_H
|
|
#define _SWAPSTK_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
/* Stack of a saved context */
|
|
typedef struct s_SwapStk {
|
|
unsigned int eax; /* EAX register */
|
|
unsigned int ebp; /* EBP register */
|
|
unsigned int ebx; /* EBX register */
|
|
unsigned int esi; /* ESI register */
|
|
unsigned int edi; /* EDI register */
|
|
unsigned int retAddr; /* Return address of caller of _Swap() */
|
|
unsigned int param; /* Parameter passed to _Swap() */
|
|
} tSwapStk;
|
|
|
|
#endif /* _ASMLANGUAGE */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _SWAPSTK_H */
|