Tagged Questions
7
votes
6answers
2k views
How to send Ctrl-C control character or terminal hangup message to child process?
I have a child process which runs in a pseudo terminal. The parent process does not run as root, but the child process does, through su or sudo. Because of this it is not possible to send a signal to ...
1
vote
2answers
120 views
writting to master pty, but cannot read in slave :(
trying to write primitive test. Program must startup tcp-server, receive connection and redirect received data to forked program. Here is the code:
#include "TcpServer.h"
#include ...
1
vote
2answers
238 views
How can the master pty detect if a slave tty has exited?
I am using BSD style pty/tty pairs to implement running a sub shell. When the user exits the sub shell, how do I detect in the master process that this has occurred? I am using select(nfds, ...
0
votes
2answers
315 views
Child process unable to read from created pseudo terminal
I'm trying to write an app that can login to SSH with a password, by using pseudo terminals. But if I write() to the master device then the data somehow does not appear in the slave device. Here's a ...