Renamed Interface to Monitor, since it's no longer the gdb interface . . .
[aesalon.git] / src / monitor / dwarf / Entry.cpp
blob235328db59ea6cbdcc7004886fb0a7709148ff5d
1 #include "Entry.h"
3 namespace Aesalon {
4 namespace Monitor {
5 namespace DWARF {
7 Entry::Entry(std::string name) : name(name) {
8 /* NOTE: this is not thread-safe */
9 static EntryID last_id = 0;
10 id = ++last_id;
13 } // namespace DWARF
14 } // namespace Monitor
15 } // namespace Aesalon