mirror of
https://github.com/curl/curl.git
synced 2026-07-12 07:07:21 +03:00
thrdqueue.h: minor language polish in comments
This commit is contained in:
parent
484f724a30
commit
9c9a4f3eab
1 changed files with 4 additions and 4 deletions
|
|
@ -36,14 +36,14 @@ typedef enum {
|
|||
CURL_THRDQ_EV_ITEM_DONE /* an item has been processed and is ready */
|
||||
} Curl_thrdq_event;
|
||||
|
||||
/* Notification callback when "events" happen in the queue. May be
|
||||
* call from any thread, queue is not locked. */
|
||||
/* Notification callback when "events" happen in the queue. May be called from
|
||||
* any thread, queue is not locked. */
|
||||
typedef void Curl_thrdq_ev_cb(const struct curl_thrdq *tqueue,
|
||||
Curl_thrdq_event ev,
|
||||
void *user_data);
|
||||
|
||||
/* Process a queued item. Maybe call from any thread. Queue is
|
||||
* not locked. */
|
||||
/* Process a queued item. May be called from any thread. Queue is not
|
||||
* locked. */
|
||||
typedef void Curl_thrdq_item_process_cb(void *item);
|
||||
|
||||
/* Free an item. May be called from any thread at any time for an
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue