Re: Failed to configure Guile due to dirty iConvert

2019-05-13 Thread Mark H Weaver
Hi Jeffrey, Jeffrey Walton writes: > I'm attempting to test GnuTLS using Asan. All dependent libraries need > to be built with Asan, too. That caught Guile in the net. > > Guile 2.2.4 is failing to configure due to resource leaks in the M4 > macro for iconv. See below. Fixed in commit 65d98d8fd2

Re: [PATCH] Add current-suspendable-io-status parameter

2019-05-13 Thread Nala Ginrut
Hi Mark! Thanks for so patient reply! On Tue, May 14, 2019 at 7:01 AM Mark H Weaver wrote: > I guess what you want is the ability to see incremental reports on the > progress of your large I/O operations. Is that right? If we are going > to add an API for this, it needs to be reliable, and alw

Re: [PATCH] Add current-suspendable-io-status parameter

2019-05-13 Thread Mark H Weaver
Hello again, Previously I wrote: > I also have doubts about the utility of the information provided. > 'start' seems completely irrelevant, since it merely indicates the > position within the read/write buffer. It's easier to make a case that > 'count' might be relevant, but it's not a reliable i

Failed to configure Guile due to dirty iConvert

2019-05-13 Thread Jeffrey Walton
Hi Everyone, I'm attempting to test GnuTLS using Asan. All dependent libraries need to be built with Asan, too. That caught Guile in the net. Guile 2.2.4 is failing to configure due to resource leaks in the M4 macro for iconv. See below. Please update m4/iconv to something that has been patched.

Re: [PATCH] Add current-suspendable-io-status parameter

2019-05-13 Thread Mark H Weaver
Hi Nala, Nala Ginrut writes: > Here's a patch to add current-suspendable-io-status: > Its result is a pair: (finished-bytes . rest-bytes) > > This is useful for designing a proper scheduler algorithm for > suspendable I/O operations. > For example, the server-core based on delimited-continuation

Re: [PATCH] Add current-suspendable-io-status parameter

2019-05-13 Thread Nala Ginrut
BTW, the patch is based on the latest stable-2.2 branch. On Mon, May 13, 2019 at 6:54 PM Nala Ginrut wrote: > > Hi folks! > Here's a patch to add current-suspendable-io-status: > Its result is a pair: (finished-bytes . rest-bytes) > > This is useful for designing a proper scheduler algorithm for

[PATCH] Add current-suspendable-io-status parameter

2019-05-13 Thread Nala Ginrut
Hi folks! Here's a patch to add current-suspendable-io-status: Its result is a pair: (finished-bytes . rest-bytes) This is useful for designing a proper scheduler algorithm for suspendable I/O operations. For example, the server-core based on delimited-continuation can compute a priority based on