📄 usrstattbl.c
字号:
/* usrStatTbl.c - error status symbol table initialization library *//* Copyright 1984-1998 Wind River Systems, Inc. *//*modification history--------------------01a,03jun98,ms written*//*DESCRIPTIONInitialize the error status table used by perror and printErrno.*//******************************************************************************** usrStatTblInit - initialize the error status table*/ void usrStatTblInit (void) { int ix; statSymTbl = symTblCreate (STAT_TBL_HASH_SIZE_LOG2, FALSE, memSysPartId); for (ix = 0; ix < statTblSize; ix ++) /* from built in table */ symTblAdd (statSymTbl, &(statTbl [ix])); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -