MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / lwp_user_strlen

Function lwp_user_strlen

components/lwp/lwp_user_mm.c:1073–1081  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1071}
1072
1073size_t lwp_user_strlen(const char *s)
1074{
1075 struct rt_lwp *lwp = RT_NULL;
1076
1077 lwp = lwp_self();
1078 RT_ASSERT(lwp != RT_NULL);
1079
1080 return lwp_user_strlen_ext(lwp, s);
1081}
1082
1083size_t lwp_strlen(struct rt_lwp *lwp, const char *s)
1084{

Callers 15

lwp_args_putFunction · 0.85
sys_openFunction · 0.85
sys_openatFunction · 0.85
sys_unlinkFunction · 0.85
sys_execFunction · 0.85
sys_sem_createFunction · 0.85
sys_mutex_createFunction · 0.85
sys_event_createFunction · 0.85
sys_mb_createFunction · 0.85
sys_mq_createFunction · 0.85
sys_rt_timer_createFunction · 0.85
sys_execveFunction · 0.85

Calls 2

lwp_selfFunction · 0.85
lwp_user_strlen_extFunction · 0.85

Tested by

no test coverage detected