Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
faa8df2b
Commit
faa8df2b
authored
Feb 15, 2017
by
Leigh B Stoller
Browse files
Multi-architecture fix.
parent
4d7b6db0
Changes
1
Hide whitespace changes
Inline
Side-by-side
tbsetup/libvtop_test.pm.in
View file @
faa8df2b
...
...
@@ -1297,10 +1297,12 @@ sub LoadVirtNodes($)
# what we want to do.
#
if (!$vnode->_typeinfo()->IsClass() || defined($fixed)) {
if (!defined($self->types()->{$type})) {
$self->types()->{$type} = 0;
my $t = $vnode->_typeinfo()->type();
if (!exists($self->types()->{$t})) {
$self->types()->{$t} = 0;
}
$self->types()->{$t
ype
}++;
$self->types()->{$t}++;
}
elsif (defined($self->forcedarchitecture())) {
my $arch = $self->forcedarchitecture();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment