summaryrefslogtreecommitdiff
path: root/commonTypes.h
diff options
context:
space:
mode:
authorJapa2011-02-19 19:11:19 +0000
committerJapa2011-02-19 19:11:19 +0000
commitf1cd36716229dd3f0795824197b14dcd0d979540 (patch)
treea9391276cc5f0c569fe531996964a6cb57d2263e /commonTypes.h
parentd8523cd32f9aea85ce0ef0c6fb12c8562922dad2 (diff)
parentc2f73a1f356890e8ed6ada37a4613ce4836d4712 (diff)
downloadstonesense-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.h8
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;