1
1

callbacks: Improve the documentation of ssh_threads_get_noop().

BUG: https://red.libssh.org/issues/123
Этот коммит содержится в:
Andreas Schneider 2013-09-16 10:50:25 +02:00
родитель 89853607c5
Коммит 8e703b9974

Просмотреть файл

@ -809,9 +809,13 @@ LIBSSH_API int ssh_threads_set_callbacks(struct ssh_threads_callbacks_struct
LIBSSH_API struct ssh_threads_callbacks_struct *ssh_threads_get_pthread(void); LIBSSH_API struct ssh_threads_callbacks_struct *ssh_threads_get_pthread(void);
/** /**
* @brief returns a pointer on the noop threads callbacks, to be used with * @brief Get the noop threads callbacks structure
* ssh_threads_set_callbacks. These callbacks do nothing and are being used by *
* default. * This can be used with ssh_threads_set_callbacks. These callbacks do nothing
* and are being used by default.
*
* @return Always returns a valid pointer to the noop callbacks structure.
*
* @see ssh_threads_set_callbacks * @see ssh_threads_set_callbacks
*/ */
LIBSSH_API struct ssh_threads_callbacks_struct *ssh_threads_get_noop(void); LIBSSH_API struct ssh_threads_callbacks_struct *ssh_threads_get_noop(void);