Skip to content

Commit 85a5cca

Browse files
committed
Device::unmake is thread safe
Implementation is protected by a mutex, and this note is outdated per pothosware#111.
1 parent b0d6e6a commit 85a5cca

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

include/SoapySDR/Device.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ SOAPY_SDR_API SoapySDRDevice *SoapySDRDevice_makeStrArgs(const char *args);
9191
/*!
9292
* Unmake or release a device object handle.
9393
*
94-
* \note This call is not thread safe. Implementations calling into unmake
95-
* from multiple threads should protect this call with a mutex.
96-
*
9794
* \param device a pointer to a device object
9895
* \return 0 for success or error code on failure
9996
*/

include/SoapySDR/Device.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ class SOAPY_SDR_API Device
7575
/*!
7676
* Unmake or release a device object handle.
7777
*
78-
* \note This call is not thread safe. Implementations calling into unmake
79-
* from multiple threads should protect this call with a mutex.
80-
*
8178
* \param device a pointer to a device object
8279
*/
8380
static void unmake(Device *device);

0 commit comments

Comments
 (0)