From 012e301664bc10b38097d8127b6468b4e86440f2 Mon Sep 17 00:00:00 2001 From: wdfk-prog <1425075683@qq.com> Date: Mon, 16 Mar 2026 09:54:59 +0800 Subject: [PATCH] docs(kservice): Update the documentation comments of the fls function --- src/kservice.c | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/kservice.c b/src/kservice.c index 60806ce82a..1c77acac8a 100644 --- a/src/kservice.c +++ b/src/kservice.c @@ -1104,13 +1104,19 @@ RTM_EXPORT(rt_free_align); #endif /* RT_USING_HEAP */ /** - * fls - find last (most-significant) bit set - * @x: the word to search + * @brief Find the index of the most significant set bit in a 32-bit integer. + * @details The result is the position of the highest bit set to 1, counting + * from 1 for the least significant bit. If the input value is 0, the function + * returns 0. * - * This is defined the same way as ffs. - * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32. + * Examples: + * - fls(0) = 0 + * - fls(1) = 1 + * - fls(0x80000000) = 32 + * + * @param val 32-bit integer value to examine. + * @return Position of the most significant set bit (1–32), or 0 if @p val is 0. */ - int __rt_fls(int val) { int bit = 32;