scanf function and EINTR signal

624 Views Asked by At

I am working on Linux platform. I have a console based multi-threaded application which loads a multi-threaded shared object library for other functionalities. The shared object library internally opens a serial port for communication. The library uses 'open', 'read' and 'write' Linux system calls for serial communication. Serial communication uses signal-handler to receive data. The main thread in console application waits on 'scanf' statement, to get input from user.

Whenever there is any activity on serial port, signal are generated due to which the 'scanf' call is interrupted with EINTR (interrupted system call).

Is there any way by which 'scanf' would not be interrupted because on read-write operations on serial port ?

1

There are 1 best solutions below

0
On

If you install the signal handler with the SA_RESTART flag, read() and write() calls will not return EINTR errors in Linux; neither will the scanf() family of standard I/O functions (as they use read() internally). See man 7 signal section "Interruption of system calls and library functions by signal handlers" for details. Although this behaviour is system-specific, all other Unix-like systems I've used behave the same way. – Nominal Animal