rtthread 模块提供了与 RT-Thread 操作系统相关的功能,如查看栈使用情况等。
返回当前线程的 id 。
返回是否是可抢占线程。
>>> import rtthread
>>>
>>> rtthread.is_preempt_thread() # determine if it's a preemptible thread
True
>>> rtthread.current_tid() # current thread id
268464956
>>>