Misc heading fixes

This commit is contained in:
Rémi Verschelde
2019-01-08 11:30:55 +01:00
parent 3b7b77e3fc
commit aa7a9f8675
34 changed files with 140 additions and 128 deletions

View File

@@ -197,11 +197,11 @@ Using multiple threads
ResourceInteractiveLoader can be used from multiple threads. A couple of
things to keep in mind if you attempt it:
Use a Semaphore
Use a semaphore
~~~~~~~~~~~~~~~
While your thread waits for the main thread to request a new resource,
use a Semaphore to sleep (instead of a busy loop or anything similar).
use a ``Semaphore`` to sleep (instead of a busy loop or anything similar).
Not blocking main thread during the polling
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~