12 lines
139 B
C++
12 lines
139 B
C++
/**
|
|
* @file thread.cc
|
|
*
|
|
* Implementation of the thread abstraction.
|
|
*/
|
|
|
|
#include "thread.h"
|
|
|
|
Mutex Mutex::global;
|
|
|
|
// TODO: Blank file
|