Commit 89a40ef6 authored by Geoff Simmons's avatar Geoff Simmons

lower thresholds for returning free lists from the writer thread

parent d613050a
...@@ -341,9 +341,9 @@ WRT_Init(void) ...@@ -341,9 +341,9 @@ WRT_Init(void)
if (config.output_timeout != 0.) if (config.output_timeout != 0.)
timeout = config.output_timeout * 1e3; timeout = config.output_timeout * 1e3;
tx_thresh = config.max_data >> 1; tx_thresh = config.max_data >> 2;
rec_thresh = nrecords >> 1; rec_thresh = nrecords >> 2;
chunk_thresh = nchunks >> 1; chunk_thresh = nchunks >> 2;
run = 1; run = 1;
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment