tools/nxstyle.c: Updating white list to xedge example
Update nxstyle whitelist to allow MixedCase identifiers used by the Xedge (Barracuda App Server) example. The following prefixes were added to g_white_prefix[]: - Ba - Thread - LThread - Http - Disk - Xedge The following exact identifiers were added to g_white_content_list[]: - baGetUnixTime - baParseDate - setDispExit - xedgeInitDiskIo - xedgeOpenAUX - platformInitDiskIo - ltMgr - Lt Signed-off-by: Jorge Guzman <jorge.gzm@gmail.com>
This commit is contained in:
parent
6bbc8c701a
commit
b78b870d68
1 changed files with 19 additions and 0 deletions
|
|
@ -217,6 +217,12 @@ static const char *g_white_prefix[] =
|
||||||
"ub32", /* Ref: include/fixedmath.h */
|
"ub32", /* Ref: include/fixedmath.h */
|
||||||
"lua_", /* Ref: apps/interpreters/lua/lua-5.x.x/src/lua.h */
|
"lua_", /* Ref: apps/interpreters/lua/lua-5.x.x/src/lua.h */
|
||||||
"luaL_", /* Ref: apps/interpreters/lua/lua-5.x.x/src/lauxlib.h */
|
"luaL_", /* Ref: apps/interpreters/lua/lua-5.x.x/src/lauxlib.h */
|
||||||
|
"Ba", /* Ref: apps/netutils/xedge/BAS/examples/xedge/src/xedge.h */
|
||||||
|
"Thread", /* Ref: apps/netutils/xedge/BAS/examples/xedge/src/xedge.h */
|
||||||
|
"LThread", /* Ref: apps/netutils/xedge/BAS/examples/xedge/src/xedge.h */
|
||||||
|
"Http", /* Ref: apps/netutils/xedge/BAS/examples/xedge/src/xedge.h */
|
||||||
|
"Disk", /* Ref: apps/netutils/xedge/BAS/examples/xedge/src/xedge.h */
|
||||||
|
"Xedge", /* Ref: apps/netutils/xedge/BAS/examples/xedge/src/xedge.h */
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -651,6 +657,19 @@ static const char *g_white_content_list[] =
|
||||||
"timeMid",
|
"timeMid",
|
||||||
"timeHiAndVersion",
|
"timeHiAndVersion",
|
||||||
|
|
||||||
|
/* Ref:
|
||||||
|
* apps/netutils/xedge/BAS/examples/xedge/src/xedge.h
|
||||||
|
*/
|
||||||
|
|
||||||
|
"ltMgr",
|
||||||
|
"Lt",
|
||||||
|
"setDispExit",
|
||||||
|
"baGetUnixTime",
|
||||||
|
"platformInitDiskIo",
|
||||||
|
"xedgeInitDiskIo",
|
||||||
|
"xedgeOpenAUX",
|
||||||
|
"baParseDate",
|
||||||
|
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue