Suspend/resume working.

This commit is contained in:
Ben Vanik
2013-12-23 19:46:35 -08:00
parent dc48b0a85a
commit 98efc7ddfa
11 changed files with 95 additions and 28 deletions

View File

@@ -145,9 +145,10 @@ module.service('DataSource', function($q) {
});
};
DataSource.prototype.stepNext = function() {
DataSource.prototype.stepNext = function(threadId) {
return this.issue({
command: 'cpu.step'
command: 'cpu.step',
threadId: threadId
});
};