diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-08-22 19:46:16 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-22 19:46:16 +0000 |
commit | 904183262ab12d6a29bc53cc61aebaa4a7648138 (patch) | |
tree | faedfa69bac034558caad0d6aa68ed4cd71e9036 /include | |
parent | 2a0bc64226c06b1e83b44f9fa53b3ff8458d67e7 (diff) |
Markus F.X.J. Oberhumer added better NOSIGNAL description and fixed
spelling error
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index d4ce4cd43..c0299c6f3 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -563,14 +563,15 @@ typedef enum { /* Instruct libcurl to use a smaller receive buffer */ CINIT(BUFFERSIZE, LONG, 98), - /* Instruct libcurl to never use any signal/alarm handlers, even with - timeouts. */ + /* Instruct libcurl to not use any signal/alarm handlers, even when using + timeouts. This option is useful for multi-threaded applications. + See libcurl-the-guide for more background information. */ CINIT(NOSIGNAL, LONG, 99), /* Provide a CURLShare for mutexing non-ts data */ CINIT(SHARE, OBJECTPOINT, 100), - CURLOPT_LASTENTRY /* the last unusued */ + CURLOPT_LASTENTRY /* the last unused */ } CURLoption; /* two convenient "aliases" that follow the name scheme better */ |