Displaying 1 result from an estimated 1 matches for "0xe68aa040".
2011 May 20
0
hang in select() on unix domain sockets, 60s timeout loop
...ogDtpAXrRe.iLs --numeric-ids --inplace
it loops every 60 seconds with:
select(1, [0], [], NULL, {60, 0}) = 0 (Timeout)
the listed readfd is a unix domain socket:
$ sudo readlink /proc/`pgrep rsync`/fd/0
socket:[62052357]
$ sudo lsof | grep 62052357
rsync 4532 root 0u unix 0xe68aa040 0t0 62052357 socket
rsync 4532 root 1u unix 0xe68aa040 0t0 62052357 socket
$ grep 62052357 /proc/net/unix
e68aa040: 00000003 00000000 00000000 0001 03 62052357
So it's the same process. Is it hung on itself? Howcome it
doesn't respond to timeout and just goes over again? Is...