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