diff options
author | Josh Blum <josh@joshknows.com> | 2011-06-17 11:04:11 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-06-17 11:04:11 -0700 |
commit | a852b6011c11e32e000ccd18c2009edfe81500ee (patch) | |
tree | 17f7647a5ed5cb4dc610b50116bd920c3958356d /host/docs | |
parent | a984d9059a9cd405b18815f5e7669fbd0b0fa555 (diff) | |
parent | bc87971891df7f47c8240a24d2a602c6ae63bbc2 (diff) | |
download | uhd-a852b6011c11e32e000ccd18c2009edfe81500ee.tar.gz uhd-a852b6011c11e32e000ccd18c2009edfe81500ee.tar.bz2 uhd-a852b6011c11e32e000ccd18c2009edfe81500ee.zip |
Merge branch 'master' into frontend_work
Conflicts:
host/lib/usrp/usrp_e100/io_impl.cpp
Diffstat (limited to 'host/docs')
-rw-r--r-- | host/docs/general.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/host/docs/general.rst b/host/docs/general.rst index cc00fc0f9..7952abb8b 100644 --- a/host/docs/general.rst +++ b/host/docs/general.rst @@ -107,10 +107,10 @@ For the most part, UHD is thread-safe. Please observe the following limitations: **Fast-path thread requirements:** -It is safe to call send() and recv() simultaneously. However, -it is not safe to call recv() simultaneously from different thread contexts. -The same rule applies for recv(), send(), and recv_async_msg(). -One thread context per fast-path device method at a time. +There are three fast-path methods for a device: send(), recv(), and recv_async_msg(). +All three methods are thread-safe and can be called from different thread contexts. +For performance, the user should call each method from a separate thread context. +These methods can also be used in a non-blocking fashion by using a timeout of zero. **Slow-path thread requirements:** It is safe to change multiple settings simultaneously. However, |