poolthread.nc
来自「tinyos-2.x.rar」· NC 代码 · 共 19 行
NC
19 行
/**
* @author Jeongyeup Paek (jpaek@enl.usc.edu)
**/
interface PoolThread {
command error_t allocate(uint8_t* t, void (*start_routine)(void*), void* arg);
command error_t release(uint8_t t);
command error_t pause(uint8_t t);
command error_t resume(uint8_t t);
command error_t sleep(uint32_t milli);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?