blob: 653fc37833345fa48002257b53795452cc99033b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
vnc: 0.925
graphic: 0.899
socket: 0.878
network: 0.797
device: 0.770
instruction: 0.757
mistranslation: 0.714
semantic: 0.500
other: 0.213
boot: 0.178
assembly: 0.012
KVM: 0.005
VNC UNIX sockets are not deleted
Description of problem:
After exiting QEMU a unix VNC socket file is left behind. Upon termination I would expect it to remove the socket file like it does for example with a monitor unix socket.
Steps to reproduce:
```
rm -f foo.socket
qemu-system-x86_64 -vnc unix:foo.socket
# Exit QEMU
ls foo.socket
```
|