Debugger now listens for connections and will only allow one at a time.

This commit is contained in:
Ben Vanik
2013-12-19 10:08:25 -08:00
parent 597e196940
commit 1461792289
10 changed files with 103 additions and 26 deletions

View File

@@ -42,6 +42,8 @@ private:
private:
Emulator* emulator_;
std::vector<Protocol*> protocols_;
xe_mutex_t* lock_;
std::vector<DebugClient*> clients_;
};