types.h
来自「开放源码的嵌入式开发环境」· C头文件 代码 · 共 56 行
H
56 行
/** * @file rtems/score/types.h *//* * This include file contains type definitions pertaining to the Intel * i386 processor family. * * COPYRIGHT (c) 1989-1999. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id: types.h,v 1.10 2005/11/08 18:54:44 ralf Exp $ */#ifndef _RTEMS_SCORE_TYPES_H#define _RTEMS_SCORE_TYPES_H#ifndef ASM#include <rtems/stdint.h>#ifdef __cplusplusextern "C" {#endif/* * This section defines the basic types for this processor. */typedef unsigned long long unsigned64; /* unsigned 64-bit integer */typedef uint16_t Priority_Bit_map_control;typedef signed long long signed64; /* 64 bit signed integer */typedef uint32_t boolean; /* Boolean value */typedef float single_precision; /* single precision float */typedef double double_precision; /* double precision float */typedef void i386_isr;typedef i386_isr ( *i386_isr_entry )( void );#ifdef __cplusplus}#endif#endif /* !ASM */#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?