You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2022/07/11 12:33:01 UTC

[incubator-nuttx] 01/02: syscall: Fix task_tls_alloc in syscall.csv

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

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

commit a384b05aa4b039b707d822d53554d929d1beb383
Author: Masayuki Ishikawa <ma...@gmail.com>
AuthorDate: Mon Jun 13 16:35:18 2022 +0900

    syscall: Fix task_tls_alloc in syscall.csv
    
    Summary:
    - This commit fixes comiple error for task_tls_alloc
    
    Impact:
    - None
    
    Testing:
    - Tested with sabre-6quad:netknsh (not merged yet)
    
    Signed-off-by: Masayuki Ishikawa <Ma...@jp.sony.com>
---
 syscall/syscall.csv | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/syscall/syscall.csv b/syscall/syscall.csv
index 0a4dd3c2b1..34a31ab84d 100644
--- a/syscall/syscall.csv
+++ b/syscall/syscall.csv
@@ -175,7 +175,7 @@
 "task_setcanceltype","sched.h","defined(CONFIG_CANCELLATION_POINTS)","int","int","FAR int *"
 "task_spawn","nuttx/spawn.h","!defined(CONFIG_BUILD_KERNEL)","int","FAR const char *","main_t","FAR const posix_spawn_file_actions_t *","FAR const posix_spawnattr_t *","FAR char * const []|FAR char * const *","FAR char * const []|FAR char * const *"
 "task_testcancel","pthread.h","defined(CONFIG_CANCELLATION_POINTS)","void"
-"task_tls_alloc","nuttx/tls.h","CONFIG_TLS_TASK_NELEM > 0","int","uintptr_t"
+"task_tls_alloc","nuttx/tls.h","CONFIG_TLS_TASK_NELEM > 0","int","tls_dtor_t"
 "telldir","dirent.h","","off_t","FAR DIR *"
 "timer_create","time.h","!defined(CONFIG_DISABLE_POSIX_TIMERS)","int","clockid_t","FAR struct sigevent *","FAR timer_t *"
 "timer_delete","time.h","!defined(CONFIG_DISABLE_POSIX_TIMERS)","int","timer_t"