| 1081 | } |
| 1082 | |
| 1083 | size_t lwp_strlen(struct rt_lwp *lwp, const char *s) |
| 1084 | { |
| 1085 | if (lwp_in_user_space(s)) |
| 1086 | return lwp_user_strlen_ext(lwp, s); |
| 1087 | else |
| 1088 | return strlen(s); |
| 1089 | } |
| 1090 | |
| 1091 | #endif |
nothing calls this directly
no test coverage detected