search for: informatory

Displaying 5 results from an estimated 5 matches for "informatory".

Did you mean: informaton
2019 Mar 11
2
Re: Obtaining the PID of a domain's QEMU process from C
...from editing /etc/libvirt/qemu/<domain>.xml or /var/run/libvirt/qemu/<domain>.xml or run the 'ps' command or whatever we might as well report the PID as part of virConnectListAllDomains data. I don't have a problem with reporting PIDs in principle, provided it's used for informatory purposes. Having said that, there's the question of why libvirt should report something that it doesn't need to consume, IOW we report machine ID which we can use to control the machine, we also report UUID which we can consume, but we'd do absolutely nothing with the PID besides report...
2019 Mar 11
2
Re: Obtaining the PID of a domain's QEMU process from C
.../<domain>.xml or > > /var/run/libvirt/qemu/<domain>.xml or run the 'ps' command or whatever we might > > as well report the PID as part of virConnectListAllDomains data. I don't have > > a problem with reporting PIDs in principle, provided it's used for informatory > > purposes. > > Having said that, there's the question of why libvirt should report something > > that it doesn't need to consume, IOW we report machine ID which we can use to > > control the machine, we also report UUID which we can consume, but we'd do > &...
2019 Mar 11
0
Re: Obtaining the PID of a domain's QEMU process from C
...tc/libvirt/qemu/<domain>.xml or > /var/run/libvirt/qemu/<domain>.xml or run the 'ps' command or whatever we might > as well report the PID as part of virConnectListAllDomains data. I don't have > a problem with reporting PIDs in principle, provided it's used for informatory > purposes. > Having said that, there's the question of why libvirt should report something > that it doesn't need to consume, IOW we report machine ID which we can use to > control the machine, we also report UUID which we can consume, but we'd do > absolutely nothing wi...
2019 Mar 11
0
Re: Obtaining the PID of a domain's QEMU process from C
....xml or > > > /var/run/libvirt/qemu/<domain>.xml or run the 'ps' command or whatever we might > > > as well report the PID as part of virConnectListAllDomains data. I don't have > > > a problem with reporting PIDs in principle, provided it's used for informatory > > > purposes. > > > Having said that, there's the question of why libvirt should report something > > > that it doesn't need to consume, IOW we report machine ID which we can use to > > > control the machine, we also report UUID which we can consume, bu...
2019 Mar 01
4
Obtaining the PID of a domain's QEMU process from C
Hello all, I'm currently writing a C program that uses the libvirt API and I need a way to obtain the pid of a given domain's QEMU process. Specifically, I'm writing an ivshmem server that uses SO_PEERCRED to get the pid of clients that connect to it, and I would like to use that pid to look up the domain in libvirt to determine the proper domain ID to return to the client. As