aboutsummaryrefslogtreecommitdiff
path: root/docs/index.html
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2025-07-04 16:06:05 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2025-07-04 16:06:05 +0200
commitb60ef277cdb7922ecd2df1702a221ca37665518f (patch)
tree5521325381762f52eba1bc8da6f3a4699e7a5a07 /docs/index.html
parent7bddb06461d8f80030b3b86175ec737dbb16ac3b (diff)
downloadlanes-b60ef277cdb7922ecd2df1702a221ca37665518f.tar.gz
lanes-b60ef277cdb7922ecd2df1702a221ca37665518f.tar.bz2
lanes-b60ef277cdb7922ecd2df1702a221ca37665518f.zip
Minor doc fixes
Diffstat (limited to 'docs/index.html')
-rw-r--r--docs/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/index.html b/docs/index.html
index 96151fe..2e74495 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -208,7 +208,7 @@
208 <li><tt>lane_h:cancel()</tt>: request the lane to stop running</li> 208 <li><tt>lane_h:cancel()</tt>: request the lane to stop running</li>
209 <li><tt>lane_h.error_trace_level</tt>: current setting of error logging level</li> 209 <li><tt>lane_h.error_trace_level</tt>: current setting of error logging level</li>
210 <li><tt>lane_h:get_threadname()</tt>: read the thread name</li> 210 <li><tt>lane_h:get_threadname()</tt>: read the thread name</li>
211 <li><tt>lane_h:join()</tt>: wait for the lane to terminate (or yield)</li> 211 <li><tt>lane_h:join()</tt>: wait for the lane to close, reading the returned values</li>
212 <li><tt>lane_h:resume()</tt>: resume a coroutine Lane</li> 212 <li><tt>lane_h:resume()</tt>: resume a coroutine Lane</li>
213 <li><tt>lane_h.status</tt>: current status of the lane</li> 213 <li><tt>lane_h.status</tt>: current status of the lane</li>
214 </ul> 214 </ul>
@@ -870,7 +870,7 @@
870 <td>integer</td> 870 <td>integer</td>
871 <td> 871 <td>
872 <tt>priority</tt>: The priority of lanes in the range <tt>[-3,+3]</tt> (default is 0). These values are a mapping over the actual priority range of the underlying implementation.<br /> 872 <tt>priority</tt>: The priority of lanes in the range <tt>[-3,+3]</tt> (default is 0). These values are a mapping over the actual priority range of the underlying implementation.<br />
873 <tt>native_priority</tt>: The priority of lanes in a platform-dependent the range. Use <a href="#priority"><tt>lanes.thread_priority_range()</tt></a> to query said range. 873 <tt>native_priority</tt>: The priority of lanes in a platform-dependent range. Use <a href="#priority"><tt>lanes.thread_priority_range()</tt></a> to query said range.
874 Implementation and dependability of priorities varies by platform. Especially Linux kernel 2.6 is not supporting priorities in user mode.<br /> 874 Implementation and dependability of priorities varies by platform. Especially Linux kernel 2.6 is not supporting priorities in user mode.<br />
875 A lane can also change its own thread priority dynamically with <a href="#priority"><tt>lanes.set_thread_priority()</tt></a>. 875 A lane can also change its own thread priority dynamically with <a href="#priority"><tt>lanes.set_thread_priority()</tt></a>.
876 </td> 876 </td>