docs(kservice): Update the documentation comments of the fls function
Some checks failed
RT-Thread BSP Static Build Check / 🔍 Summary of Git Diff Changes (push) Has been cancelled
RT-Thread BSP Static Build Check / ${{ matrix.legs.RTT_BSP }} (push) Has been cancelled
RT-Thread BSP Static Build Check / collect-artifacts (push) Has been cancelled
doc_doxygen / doxygen_doc generate (push) Has been cancelled
doc_doxygen / deploy (push) Has been cancelled
pkgs_test / change (push) Has been cancelled
utest_auto_run / A9 :components/dfs.cfg (push) Has been cancelled
utest_auto_run / A9 :components/lwip.cfg (push) Has been cancelled
utest_auto_run / A9 :components/netdev.cfg (push) Has been cancelled
utest_auto_run / A9 :components/sal.cfg (push) Has been cancelled
utest_auto_run / A9 :cpp11/cpp11.cfg (push) Has been cancelled
utest_auto_run / AARCH64-rtsmart :default.cfg (push) Has been cancelled
utest_auto_run / A9-rtsmart :default.cfg (push) Has been cancelled
utest_auto_run / RISCV-rtsmart :default.cfg (push) Has been cancelled
utest_auto_run / XUANTIE-rtsmart :default.cfg (push) Has been cancelled
utest_auto_run / AARCH64 :default.cfg (push) Has been cancelled
utest_auto_run / AARCH64-smp :default.cfg (push) Has been cancelled
utest_auto_run / A9 :default.cfg (push) Has been cancelled
utest_auto_run / A9-smp :default.cfg (push) Has been cancelled
utest_auto_run / RISCV :default.cfg (push) Has been cancelled
utest_auto_run / RISCV-smp :default.cfg (push) Has been cancelled
utest_auto_run / A9 :kernel/atomic_c11.cfg (push) Has been cancelled
utest_auto_run / RISCV :kernel/atomic_c11.cfg (push) Has been cancelled
utest_auto_run / A9 :kernel/ipc.cfg (push) Has been cancelled
utest_auto_run / A9 :kernel/kernel_basic.cfg (push) Has been cancelled
utest_auto_run / A9 :kernel/mem.cfg (push) Has been cancelled
ToolsCI / Tools (push) Has been cancelled

This commit is contained in:
wdfk-prog
2026-03-16 09:54:59 +08:00
committed by Rbb666
parent 05445c04e8
commit 012e301664

View File

@@ -1104,13 +1104,19 @@ RTM_EXPORT(rt_free_align);
#endif /* RT_USING_HEAP */ #endif /* RT_USING_HEAP */
/** /**
* fls - find last (most-significant) bit set * @brief Find the index of the most significant set bit in a 32-bit integer.
* @x: the word to search * @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. * Examples:
* Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32. * - 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 (132), or 0 if @p val is 0.
*/ */
int __rt_fls(int val) int __rt_fls(int val)
{ {
int bit = 32; int bit = 32;