Changeset 2315 in ProjectBuilder


Ignore:
Timestamp:
Sep 7, 2017, 3:14:46 AM (7 years ago)
Author:
Bruno Cornec
Message:

Fix process detection around qemu on mga6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 0.14.6/pb/bin/pb

    r2313 r2315  
    47074707    my $vmcmd = shift;
    47084708    my $vmm = shift;
    4709     my $vexist = 0;     # FALSE by default
     4709    my $vexist = 0;             # FALSE by default
    47104710    my $vmport = undef;         # NONE by default
    47114711
     4712    if ($vmcmd =~ /qemu/) {
     4713        # Remove the suffix as qemu changes it at launch
     4714        $vmcmd =~ s/qemu-.*/qemu/;
     4715    }
    47124716    open(PS, "ps auxhww|") || die "Unable to call ps";
    47134717    while (<PS>) {
Note: See TracChangeset for help on using the changeset viewer.