mathhardlib.c
来自「vxworks的源代码」· C语言 代码 · 共 51 行
C
51 行
/* mathHardLib.c - hardware floating-point math library *//* Copyright 1998-2001 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01e,07sep01,zl re-organized SH math library support (SPR #69834).01d,20sep00,hk moved external function pointer declarations to mathShLibP.h.01c,27aug99,zl added mathHardInit for SH775001b,15jun98,hk reformatted to wrs style based on mc68k-01o.01a,18mar98,asai written.*//*DESCRIPTIONThis library provides support routines for using hardware floating-pointunits.The routines in this library are used automatically for high-levelmath functions only if mathHardInit() has been called previously.INCLUDE FILES: math.hSEE ALSO: mathSoftLib, .I VxWorks Programmer's Guidearchitecture-specific appendices*/#include "vxWorks.h"#include "fppLib.h"/******************************************************************************** mathHardInit - initialize hardware floating-point math support** This routine is called from usrConfig.c if INCLUDE_HW_FP is defined. ** RETURNS: N/A** SEE ALSO: mathSoftInit()*/void mathHardInit () { /* initialize hardware FP support */ fppInit(); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?