summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/examples
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-07-10 18:50:21 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-07-10 18:50:21 -0400
commitbc72acbfd2410e01946375bcfa29cf37a7c01c17 (patch)
treeeaf3f52239c4194a51e4f0b047d436395a77921a /indra/llcorehttp/examples
parenta5ba9c0eb327d2fb38a39560a34712e844a71a79 (diff)
SH-3244 Syscall avoidance in HttpRequest::update() method
Well, achieved that by doing work in bulk when needed. But turned into some additional things. Change timebase from mS to uS as, well, things are headed that way. Implement an HttpReplyQueue::fetchAll method (advertised one, hadn't implemented it).
Diffstat (limited to 'indra/llcorehttp/examples')
-rw-r--r--indra/llcorehttp/examples/http_texture_load.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcorehttp/examples/http_texture_load.cpp b/indra/llcorehttp/examples/http_texture_load.cpp
index e5951e8415..bcb322bd5c 100644
--- a/indra/llcorehttp/examples/http_texture_load.cpp
+++ b/indra/llcorehttp/examples/http_texture_load.cpp
@@ -244,7 +244,7 @@ int main(int argc, char** argv)
int passes(0);
while (! ws.reload(hr))
{
- hr->update(5000);
+ hr->update(5000000);
ms_sleep(2);
if (0 == (++passes % 200))
{