diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2016-10-14 16:24:34 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2016-10-14 16:24:34 (GMT) | 
| commit | 722539ffc6005c6cd9c8ebd37f93999014ae6d24 (patch) | |
| tree | 5f78dce6057f904d689c9ff073cc69f33d057abf /src/arch/context-int.h | |
| parent | 8dff3daac4d2dc98b90adaecea834fb65db4fb10 (diff) | |
Handled Dalvik simple switch cases without fallthrough.
Diffstat (limited to 'src/arch/context-int.h')
| -rw-r--r-- | src/arch/context-int.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/src/arch/context-int.h b/src/arch/context-int.h index 1ea8b6c..df62090 100644 --- a/src/arch/context-int.h +++ b/src/arch/context-int.h @@ -56,6 +56,11 @@ struct _GProcContext      gint *counter; +    GDbItem **items;                        /* Eléments à insérer plus tard*/ +    size_t items_allocated;                 /* Taille allouée à la liste   */ +    size_t items_count;                     /* Nombre d'éléments présents  */ +    GMutex items_mutex;                     /* Accès à la liste            */ +  }; | 
