[PATCH] winsup/doc/posix.xml: add note for getrlimit, setrlimit, links to notes

2021-02-12 Thread Brian Inglis
change notes to see "Implementation Notes" to links to std-notes.html; links work in html docs but appear as text in info docs; add link to std-notes.html to getrlimit, setrlimit; add note to document limitations of getrlimit, setrlimit resources support --- winsup/doc/posix.xml | 101

Re: [PATCH v2] Cygwin: Have tmpfile(3) use O_TMPFILE

2021-02-12 Thread Mark Geisert
Corinna Vinschen via Cygwin-patches wrote: [...] The patch was missing the EXPORT_ALIAS for tmpfile64, as outlined in https://cygwin.com/pipermail/cygwin-developers/2021-February/012039.html I added this to the patch and pushed it. Oof, I missed that on the v2 patch. Thanks for catching it!

Re: [PATCH v2] Cygwin: pty: Reduce unecessary input transfer.

2021-02-12 Thread Corinna Vinschen via Cygwin-patches
On Feb 11 18:09, Takashi Yano via Cygwin-patches wrote: > - Currently, input transfer is performed every time one line is read(), > if the non-cygwin app is running in the background. With this patch, > transfer is triggered by setpgid() rather than read() so that the > unnecessary input

Re: [PATCH v2] Cygwin: Have tmpfile(3) use O_TMPFILE

2021-02-12 Thread Corinna Vinschen via Cygwin-patches
On Feb 10 22:53, Mark Geisert wrote: > Per discussion on cygwin-developers, a Cygwin tmpfile(3) implementation > has been added to syscalls.cc. This overrides the one supplied by > newlib. Then the open(2) flag O_TMPFILE was added to the open call that > tmpfile internally makes. > > This v2