Le 25/03/2017 à 17:07, ic...@apache.org a écrit :
Author: icing
Date: Sat Mar 25 16:07:30 2017
New Revision: 1788672

URL: http://svn.apache.org/viewvc?rev=1788672&view=rev
Log:
On the trunk:

mod_http2: h2 workers with improved scalability for better scheduling
      performance. There are H2MaxWorkers threads created at start and the
      number is kept constant.
[...]
+apr_status_t h2_fifo_peek(h2_fifo *fifo, h2_fifo_peek_fn *fn, void *ctx)
+{
+    return fifo_peek(fifo, fn, ctx, 0);
+}
should have 1 as the last parameter (block)?

+
+apr_status_t h2_fifo_try_peek(h2_fifo *fifo, h2_fifo_peek_fn *fn, void *ctx)
+{
+    return fifo_peek(fifo, fn, ctx, 0);
+}
+

Reply via email to