[libvirt] [PATCH 10/16] openvz: Convert virExec usage to virCommand

Eric Blake eblake at redhat.com
Wed May 11 21:43:15 UTC 2011


On 05/10/2011 02:07 PM, Cole Robinson wrote:
> +    virCommandPtr cmd = virCommandNewArgList(VZLIST, "-ovpsid", "-H" , NULL);
> +
> +    virCommandSetOutputFD(cmd, &outfd);
> +    if (virCommandRunAsync(cmd, &pid) < 0)
> +        goto cleanup;
>  
>      while (got < nids) {
>          ret = openvz_readline(outfd, buf, 32);
> @@ -1405,13 +1402,20 @@ static int openvzListDomains(virConnectPtr conn ATTRIBUTE_UNUSED,
>          ids[got] = veid;
>          got ++;
>      }
> -    waitpid(pid, NULL, 0);
> +
> +    if (virCommandWait(cmd, NULL) < 0)
> +        goto cleanup;

Another case where passing NULL for pid is probably simpler.

-- 
Eric Blake   eblake at redhat.com    +1-801-349-2682
Libvirt virtualization library http://libvirt.org

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 619 bytes
Desc: OpenPGP digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20110511/4a8e7628/attachment-0001.sig>


More information about the libvir-list mailing list