Nala Ginrut <nalagin...@gmail.com> writes: > Is there still problem? I'm fine with the patch, and I'm expecting to > merge it ASAP. Anyway, please don't hesitate to tell me if there's still > any problem, I'm glad to help to do it better. I really need it.
Sorry for the delay, but I'm having second thoughts about whether this is the right approach. Perhaps we should instead make a set of commitments that certain basic operations like scheme evaluation, heap allocation, and basic scheme procedures will leave 'errno' unchanged. At the API level, the idea would be that if you write Scheme code that makes a reasonable effort to avoid non-trivial operations between the FFI call and the call to (errno) or (set-errno! <n>), this would be sufficient. At an implementation level, it would require us to save and restore 'errno' around C library calls that are made by Guile's runtime system without the user's knowledge, most notably when running GC (during allocation) or when running asyncs and things like that. What do you think? Mark