More clean-ups and cool template stuff
[invirt/third/libt4.git] / threaded_log.cc
1 #include <sys/time.h>
2 #include <stdint.h>
3 #include "threaded_log.h"
4
5 std::mutex cerr_mutex;
6 std::map<std::thread::id, int> thread_name_map;
7 int next_thread_num = 0;
8 std::map<void *, int> instance_name_map;
9 int next_instance_num = 0;