* arch/arm/src/common/arm_fork.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you 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.
*
****************************************************************************/
#ifndef __ARCH_ARM_SRC_COMMON_ARM_FORK_H
#define __ARCH_ARM_SRC_COMMON_ARM_FORK_H
* Included Files
****************************************************************************/
#include <nuttx/config.h>
* Pre-processor Definitions
****************************************************************************/
#define FORK_R4_OFFSET (0*4)
#define FORK_R5_OFFSET (1*4)
#define FORK_R6_OFFSET (2*4)
#define FORK_R7_OFFSET (3*4)
#define FORK_R8_OFFSET (4*4)
#define FORK_R9_OFFSET (5*4)
#define FORK_R10_OFFSET (6*4)
#define FORK_FP_OFFSET (7*4)
#define FORK_SP_OFFSET (8*4)
#define FORK_LR_OFFSET (9*4)
#define FORK_SIZEOF (10*4)
* Public Types
****************************************************************************/
#ifndef __ASSEMBLY__
struct fork_s
{
uint32_t r4;
uint32_t r5;
uint32_t r6;
union
{
uint32_t r7;
#ifdef CONFIG_ARM_THUMB
uint32_t fp;
#endif
};
uint32_t r8;
uint32_t r9;
uint32_t r10;
union
{
uint32_t r11;
#ifndef CONFIG_ARM_THUMB
uint32_t fp;
#endif
};
uint32_t sp;
uint32_t lr;
};
#endif
#endif