How Terminals Work
how-terminals-work.vercel.app
How Terminals Work
1–7 of 7 posts
Re: How Terminals Work
#2Wow, this seems so good !!!
Re: How Terminals Work
#3Thanks for this great work, very helpful. Today I learned!
Re: How Terminals Work
#4Re: How Terminals Work
#5[deleted]
Re: How Terminals Work
#6nitpick - EOF is not a signal, it just flushes the current line content without needing a newline in cooked mode and doing this on an empty line results in a 0 byte read(), which most apps interpret as EOF
and the terminal emulator is not itself sending the signals, its always just sending raw characters to the pty device - it is the kernel's pty layer sending a signal if the right flags are on and doing line buffering, local echo, etc. and signals go to the foreground process group (which is set by the shell making a tcsetpgrp syscall)
Re: How Terminals Work
#7For the record: https://mastodonapp.uk/@JdeBP/115869933538346446