This is an automated email from the ASF dual-hosted git repository.

davids5 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit cfc58d1913619a070c114bec4dd80d282efee3fb
Author: Xiang Xiao <[email protected]>
AuthorDate: Thu Jul 2 19:50:50 2020 +0800

    nxstyle: Add some unwind name to the white list
    
    we can't change the case because it is defined by ARM
    
    Signed-off-by: Xiang Xiao <[email protected]>
---
 tools/nxstyle.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tools/nxstyle.c b/tools/nxstyle.c
index 9a3a471..7e9136b 100644
--- a/tools/nxstyle.c
+++ b/tools/nxstyle.c
@@ -197,7 +197,10 @@ static const char *g_white_prefix[] =
 
 static const char *g_white_list[] =
 {
-  "_Exit",   /* Ref:  stdlib.h */
+  "__EIT_entry",             /* Ref:  gnu_unwind_find_exidx.c */
+  "__gnu_Unwind_Find_exidx", /* Ref:  gnu_unwind_find_exidx.c */
+  "_Exit",                   /* Ref:  stdlib.h */
+  "_Unwind_Ptr",             /* Ref:  unwind-arm-common.h */
   NULL
 };
 

Reply via email to