diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-02-02 16:56:57 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-02-04 22:16:10 -0600 |
commit | bb7d4bdc09d0b52a65b8cf3b5ae629f385fc8011 (patch) | |
tree | 6d144200ff008c8e8f1f74a51475c54b95f04912 /src/engine/core.h | |
parent | cc5fe7c79aad14819df1b4cb134884b80a945141 (diff) | |
download | wix-bb7d4bdc09d0b52a65b8cf3b5ae629f385fc8011.tar.gz wix-bb7d4bdc09d0b52a65b8cf3b5ae629f385fc8011.tar.bz2 wix-bb7d4bdc09d0b52a65b8cf3b5ae629f385fc8011.zip |
Clean up synchronization between the engine and the BA.
Diffstat (limited to '')
-rw-r--r-- | src/engine/core.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/engine/core.h b/src/engine/core.h index 0161eaa0..fae4bfe5 100644 --- a/src/engine/core.h +++ b/src/engine/core.h | |||
@@ -77,11 +77,6 @@ enum BURN_AU_PAUSE_ACTION | |||
77 | 77 | ||
78 | typedef struct _BURN_ENGINE_STATE | 78 | typedef struct _BURN_ENGINE_STATE |
79 | { | 79 | { |
80 | // synchronization | ||
81 | CRITICAL_SECTION csActive; // Any call from the UX that reads or alters the engine state | ||
82 | // needs to be syncronized through this critical section. | ||
83 | // Note: The engine must never do a UX callback while in this critical section. | ||
84 | |||
85 | // UX flow control | 80 | // UX flow control |
86 | //BOOL fSuspend; // Is TRUE when UX made Suspend() call on core. | 81 | //BOOL fSuspend; // Is TRUE when UX made Suspend() call on core. |
87 | //BOOL fForcedReboot; // Is TRUE when UX made Reboot() call on core. | 82 | //BOOL fForcedReboot; // Is TRUE when UX made Reboot() call on core. |