本人自学在看网络模块uip-refman资料时,有个单词protothread,总是不能理解这词的意思,
请问各位高手是怎么翻译这个词的?
原文如下:
6.1.7.9 #de?ne PT_WAIT_THREAD(pt, thread)
Block and wait until a child protothread completes.
This macro schedules a child protothread. The current protothread will block until the child protothread completes.
Note:
The child protothread must be manually initialized with the PT_INIT() function before this function isused.
Parameters:
pt A pointer to the protothread control structure.
thread The child protothread with arguments
See also:
PT_SPAWN()
De?nition at line 192 of ?le pt.h.
6.1.7.10 #de?ne PT_WAIT_UNTIL(pt, condition)
Block and wait until condition is true.
This macro blocks the protothread until the speci?ed condition is true
Parameters:
pt A pointer to the protothread control structure.
condition The condition.
Examples:
dhcpc.c.
De?nition at line 148 of ?le pt.h.
|