diff options
| author | Japa | 2011-02-19 19:11:19 +0000 |
|---|---|---|
| committer | Japa | 2011-02-19 19:11:19 +0000 |
| commit | f1cd36716229dd3f0795824197b14dcd0d979540 (patch) | |
| tree | a9391276cc5f0c569fe531996964a6cb57d2263e /commonTypes.h | |
| parent | d8523cd32f9aea85ce0ef0c6fb12c8562922dad2 (diff) | |
| parent | c2f73a1f356890e8ed6ada37a4613ce4836d4712 (diff) | |
| download | stonesense-f1cd36716229dd3f0795824197b14dcd0d979540.tar.gz stonesense-f1cd36716229dd3f0795824197b14dcd0d979540.tar.bz2 stonesense-f1cd36716229dd3f0795824197b14dcd0d979540.tar.xz | |
merged in the multithreaded branch.
Diffstat (limited to 'commonTypes.h')
| -rw-r--r-- | commonTypes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/commonTypes.h b/commonTypes.h index aec9d63..1c953c6 100644 --- a/commonTypes.h +++ b/commonTypes.h @@ -194,6 +194,14 @@ typedef struct { bool skipMaps;
bool skipInorganicMats;
bool skipOrganicMats;
+
+ //following are threading stuff
+
+ ALLEGRO_MUTEX * readMutex;
+ ALLEGRO_COND * readCond;
+ ALLEGRO_THREAD * readThread;
+ bool threadmade;
+ bool threadstarted;
} GameConfiguration;
|
