Allow default constructing mammoth threads
This commit is contained in:
parent
f907c189bb
commit
832d2f6961
|
@ -6,6 +6,7 @@ class Thread {
|
|||
public:
|
||||
typedef void (*Entry)(void*);
|
||||
|
||||
Thread() : thread_cap_(0) {}
|
||||
Thread(Entry e, const void* arg1);
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in New Issue