aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index e2b468cb..5fb3da3d 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -1053,7 +1053,7 @@ struct MHD_Connection
1053 /** 1053 /**
1054 * Is the connection wanting to resume? 1054 * Is the connection wanting to resume?
1055 */ 1055 */
1056 bool resuming; 1056 volatile bool resuming;
1057}; 1057};
1058 1058
1059 1059
@@ -1248,7 +1248,7 @@ struct MHD_UpgradeResponseHandle
1248 * @remark This flag could be changed from thread that process 1248 * @remark This flag could be changed from thread that process
1249 * connection's recv(), send() and response. 1249 * connection's recv(), send() and response.
1250 */ 1250 */
1251 bool clean_ready; 1251 volatile bool clean_ready;
1252}; 1252};
1253#endif /* UPGRADE_SUPPORT */ 1253#endif /* UPGRADE_SUPPORT */
1254 1254
@@ -1598,7 +1598,7 @@ struct MHD_Daemon
1598 /* 1598 /*
1599 * Do we need to process resuming connections? 1599 * Do we need to process resuming connections?
1600 */ 1600 */
1601 bool resuming; 1601 volatile bool resuming;
1602 1602
1603 /** 1603 /**
1604 * 'True' if some data is already waiting to be processed. 1604 * 'True' if some data is already waiting to be processed.