Let's suppose that sock is an unix socket opened in non-blocking mode and following function
void send_int(int sock, int flags) {
int x = 0xff;
send(sock, &x, sizeof(int), flags);
}
Is this code "correct"? I'm not sure whether the buffer (x) is copied into some sending buffer before send returns, or there is a chance that send and send_int return too early and then non-existing buffer is used as it was only on stack...