2019-06-22 15:46:34 +10:00
|
|
|
#include "tap.hpp"
|
|
|
|
#include "thread/mutex.hpp"
|
|
|
|
|
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
cruft::TAP::logger tap;
|
|
|
|
|
|
|
|
cruft::thread::mutex a;
|
|
|
|
cruft::thread::mutex b;
|
2019-12-16 08:19:44 +11:00
|
|
|
(void)a;
|
|
|
|
(void)b;
|
2019-06-22 15:46:34 +10:00
|
|
|
|
|
|
|
return tap.status ();
|
|
|
|
}
|