diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-05-09 12:47:49 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-05-10 11:02:47 +0200 |
commit | e9fd794a616c10bd0d017a76f8fdccaf4cc76851 (patch) | |
tree | 26c659c7681db2b9bfcec3f0dadc302823376856 /lib/pipeline.c | |
parent | 8dfa378e528917fd253780fd8414795ed868ab0f (diff) | |
download | curl-e9fd794a616c10bd0d017a76f8fdccaf4cc76851.tar.gz |
multi: assign IDs to all timers and make each timer singleton
A) reduces the timeout lists drastically
B) prevents a lot of superfluous loops for timers that expires "in vain"
when it has actually already been extended to fire later on
Diffstat (limited to 'lib/pipeline.c')
-rw-r--r-- | lib/pipeline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pipeline.c b/lib/pipeline.c index 72b9fb843..729e69c27 100644 --- a/lib/pipeline.c +++ b/lib/pipeline.c @@ -113,7 +113,7 @@ CURLcode Curl_add_handle_to_pipeline(struct Curl_easy *handle, if(pipeline == &conn->send_pipe && sendhead != conn->send_pipe.head) { /* this is a new one as head, expire it */ Curl_pipeline_leave_write(conn); /* not in use yet */ - Curl_expire(conn->send_pipe.head->ptr, 0); + Curl_expire(conn->send_pipe.head->ptr, 0, EXPIRE_PIPELINE_SEND); } #if 0 /* enable for pipeline debugging */ @@ -148,7 +148,7 @@ void Curl_move_handle_from_send_to_recv_pipe(struct Curl_easy *handle, infof(conn->data, "%p is at send pipe head B!\n", (void *)conn->send_pipe.head->ptr); #endif - Curl_expire(conn->send_pipe.head->ptr, 0); + Curl_expire(conn->send_pipe.head->ptr, 0, EXPIRE_PIPELINE_READ); } /* The receiver's list is not really interesting here since either this |