Re: [PATCH v6 4/7] coroutine: add libucontext as external library

2021-01-21 Thread Joelle van Dyne
Yes since the submission of this patch, we have been working with the original authors to merge all the changes upstream. The next patch should point to the original repo. -j On Thursday, January 21, 2021, Daniel P. Berrangé wrote: > On Mon, Jan 04, 2021 at 06:20:52PM -0800, Joelle van Dyne wro

Re: [PATCH v6 4/7] coroutine: add libucontext as external library

2021-01-21 Thread Daniel P . Berrangé
On Mon, Jan 04, 2021 at 06:20:52PM -0800, Joelle van Dyne wrote: > iOS does not support ucontext natively for aarch64 and the sigaltstack is > also unsupported (even worse, it fails silently, see: > https://openradar.appspot.com/13002712 ) > > As a workaround we include a library implementation of

[PATCH v6 4/7] coroutine: add libucontext as external library

2021-01-04 Thread Joelle van Dyne
iOS does not support ucontext natively for aarch64 and the sigaltstack is also unsupported (even worse, it fails silently, see: https://openradar.appspot.com/13002712 ) As a workaround we include a library implementation of ucontext and add it as a build option. Signed-off-by: Joelle van Dyne --