mailing list of musl libc
 help / color / mirror / code / Atom feed
* [musl] fputs stdout lost characters on nonblock tty
@ 2023-03-07 12:42 somethingfnothing
  2023-03-07 13:18 ` Rich Felker
  0 siblings, 1 reply; 2+ messages in thread
From: somethingfnothing @ 2023-03-07 12:42 UTC (permalink / raw)
  To: musl@lists.openwall.com 

[-- Attachment #1: Type: text/plain, Size: 424 bytes --]

hi


I use fputs to write string to stdout, sometimes it will lost some characters, the error is EAGAIN, my tty is nonblock.


fputs did not handle this error, it reset the "wpos"  "wbase" "wend" and return -1 when recive error, thus the last characters was lost, and I cannot know how much characters was lost


I think fputs should retry write when recive EAGAIN since app cannot know how much characters was lost









[-- Attachment #2: Type: text/html, Size: 1649 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [musl] fputs stdout lost characters on nonblock tty
  2023-03-07 12:42 [musl] fputs stdout lost characters on nonblock tty somethingfnothing
@ 2023-03-07 13:18 ` Rich Felker
  0 siblings, 0 replies; 2+ messages in thread
From: Rich Felker @ 2023-03-07 13:18 UTC (permalink / raw)
  To: somethingfnothing; +Cc: musl@lists.openwall.com 

On Tue, Mar 07, 2023 at 08:42:37PM +0800, somethingfnothing wrote:
> hi
> 
> 
> I use fputs to write string to stdout, sometimes it will lost some
> characters, the error is EAGAIN, my tty is nonblock.
> 
> 
> fputs did not handle this error, it reset the "wpos" "wbase" "wend"
> and return -1 when recive error, thus the last characters was lost,
> and I cannot know how much characters was lost

This is the expected behavior. fputs is expected to behave "as if" by
repeated fputc, and return an error if any of those fputc operations
would have returned an error. fputc in turn is specified to fail with
EAGAIN in this case:

    [EAGAIN]     [CX] [Option Start] The O_NONBLOCK flag is set for
    the file descriptor underlying stream and the thread would be
    delayed in the write operation. [Option End]

https://pubs.opengroup.org/onlinepubs/9699919799/functions/fputc.html

Nonblocking file descriptors are generally not useful with stdio. Is
there a reason you're setting it to nonblocking mode?

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-03-07 13:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-07 12:42 [musl] fputs stdout lost characters on nonblock tty somethingfnothing
2023-03-07 13:18 ` Rich Felker

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).