* Use std::map instead of hand-written hashtable

* Use handwritten inode-to-process-mapping instead of the
  one taken from netstat
* Use a #define for using assertions
This commit is contained in:
Arnout Engelen
2005-01-15 12:28:35 +00:00
parent 2eae80fd74
commit 4a3a21a5df
12 changed files with 83 additions and 186 deletions

View File

@@ -31,7 +31,7 @@ public:
}
PackList (Packet * m_val)
{
if (DEBUG)
if (ROBUST)
assert (m_val != NULL);
content = new PackListNode(m_val);
}