diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2017-01-11 10:15:07 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2017-01-12 13:08:57 +0900 |
commit | ccc68f0719965cc910c1a180a5b1f7e38c38f52e (patch) | |
tree | ffa9bf13d95a181f87536fc864cfdd1689a5cd3c /src | |
parent | baaa482ebff9c006390cff6e8c3a4f4094545857 (diff) |
eo - remove the spare eo domain for now for future expansion
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/eo/Eo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/eo/Eo.h b/src/lib/eo/Eo.h index 0fc48d911c..bbd53ff4a5 100644 --- a/src/lib/eo/Eo.h +++ b/src/lib/eo/Eo.h | |||
@@ -571,8 +571,8 @@ typedef enum | |||
571 | EFL_ID_DOMAIN_INVALID = -1, /**< Invalid */ | 571 | EFL_ID_DOMAIN_INVALID = -1, /**< Invalid */ |
572 | EFL_ID_DOMAIN_MAIN = 0, /**< The main loop domain where eo_init() is called */ | 572 | EFL_ID_DOMAIN_MAIN = 0, /**< The main loop domain where eo_init() is called */ |
573 | EFL_ID_DOMAIN_SHARED = 1, /**< A special shared domain that all threads can see but has extra locking and unlocking costs to access */ | 573 | EFL_ID_DOMAIN_SHARED = 1, /**< A special shared domain that all threads can see but has extra locking and unlocking costs to access */ |
574 | EFL_ID_DOMAIN_THREAD, /**< The normal domain for threads so they can adopt the main loop domain at times */ | 574 | EFL_ID_DOMAIN_THREAD /**< The normal domain for threads so they can adopt the main loop domain at times */ |
575 | EFL_ID_DOMAIN_OTHER /**< A 'spare extra domain that regular threads can talk to or even set themselves to be */ | 575 | /* One more slot for future expansion here - maybe fine-grain locked objs */ |
576 | } Efl_Id_Domain; | 576 | } Efl_Id_Domain; |
577 | 577 | ||
578 | /** | 578 | /** |