summaryrefslogtreecommitdiff
path: root/src/periodic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/periodic.h')
-rw-r--r--src/periodic.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/periodic.h b/src/periodic.h
index 8886617b..3a0501d9 100644
--- a/src/periodic.h
+++ b/src/periodic.h
@@ -21,6 +21,7 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ 21SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
22 22
23#include <the_Foundation/mutex.h> 23#include <the_Foundation/mutex.h>
24#include <the_Foundation/ptrset.h>
24#include <the_Foundation/sortedarray.h> 25#include <the_Foundation/sortedarray.h>
25 26
26iDeclareType(Periodic) 27iDeclareType(Periodic)
@@ -31,6 +32,7 @@ struct Impl_Periodic {
31 iMutex * mutex; 32 iMutex * mutex;
32 iSortedArray commands; 33 iSortedArray commands;
33 uint32_t lastPostTime; 34 uint32_t lastPostTime;
35 iPtrSet pendingRemoval; /* contexts */
34}; 36};
35 37
36void init_Periodic (iPeriodic *); 38void init_Periodic (iPeriodic *);