Skip to content

Commit

Permalink
Update readme for thread/ISR safety
Browse files Browse the repository at this point in the history
  • Loading branch information
ReservedField committed Oct 24, 2016
1 parent db3548d commit ebf5118
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,14 @@ The following environment/make variables are available:
FP bugs. Do *not* use this unless you fully understand what it means (no, it won't make you
binaries smaller or faster, even if you don't use the FPU).

Thread/ISR safety
-----------------

Unless otherwise specified by the documentation, SDK functions are thread-safe and ISR-safe.
A function is thread-safe when it can be used concurrently by multiple threads. ISR-safety, on
the other hand, is not strictly about interrupt concurrency: it means that the function can be
called from ISR/callback contexts. Don't call non ISR-safe functions from these contexts.

Reporting bugs
--------------

Expand Down

0 comments on commit ebf5118

Please sign in to comment.