Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion iio.h
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,11 @@ __api __check_ret struct iio_context * iio_create_context_from_uri(const char *u
/** @brief Duplicate a pre-existing IIO context
* @param ctx A pointer to an iio_context structure
* @return On success, A pointer to an iio_context structure
* @return On failure, NULL is returned and errno is set appropriately */
* @return On failure, NULL is returned and errno is set appropriately
*
* <b>NOTE:</b> This function is not supported on 'usb:' contexts, since libusb
* can only claim the interface once. "Function not implemented" is the expected errno.
* Any context which is cloned, must be destroyed via calling iio_context_destroy() */
__api __check_ret struct iio_context * iio_context_clone(const struct iio_context *ctx);


Expand Down