Pode fechar () bloquear?

3

Por exemplo, se você fechar um pipe ou soquete que ainda tenha dados em seu buffer de gravação que não tenha sido lido pelo processo na outra extremidade, o close () será bloqueado até que os dados sejam lidos ou o outro processo ?

    
por Brian Bi 20.07.2014 / 03:57

1 resposta

4

Sim, close pode bloquear :

If O_NONBLOCK is not set and there have been no signals posted for the STREAM, and if there is data on the module's write queue, close() shall wait for an unspecified time (for each module and driver) for any output to drain before dismantling the STREAM.

E:

If fildes refers to a socket, close() shall cause the socket to be destroyed. If the socket is in connection-mode, and the SO_LINGER option is set for the socket with non-zero linger time, and the socket has untransmitted data, then close() shall block for up to the current linger interval until all data is transmitted.

    
por 20.07.2014 / 04:11