using latest love-android @ changeset 8659be0e75a3

This commit is contained in:
fysx
2014-05-25 16:05:26 +02:00
parent 1d29da2d80
commit 49265f0596
58 changed files with 2008 additions and 366 deletions
+8
View File
@@ -21,9 +21,13 @@
#ifndef LOVE_THREAD_THREADS_H
#define LOVE_THREAD_THREADS_H
// LOVE
#include "common/config.h"
#include "Thread.h"
// C++
#include <string>
namespace love
{
namespace thread
@@ -83,9 +87,13 @@ public:
bool start();
void wait();
bool isRunning() const;
const char *getThreadName() const;
protected:
Thread *owner;
std::string threadName;
};
Mutex *newMutex();