summaryrefslogtreecommitdiff
path: root/girepository/girnode.h
diff options
context:
space:
mode:
authorSimon Feltman <sfeltman@src.gnome.org>2014-02-27 17:10:19 -0800
committerColin Walters <walters@verbum.org>2015-10-10 17:41:24 -0400
commitdf21d1f362a810f48a23b7c121bf09ce398539c7 (patch)
treeb5fd8d369bacdb4a9cea40f4a5421321a38c5007 /girepository/girnode.h
parent0aa60a43c4c9679668e15dbf3ef7a39016525150 (diff)
downloadgobject-introspection-df21d1f362a810f48a23b7c121bf09ce398539c7.tar.gz
girepository: Use constant time calculation for sections after Object fields
Add "n_field_callbacks" to ObjectBlob which represents the number of object fields which are also callbacks. This a allows a constant time computation for accessing sections after fields. Track writing of this field by passing an extra argument through the girnode writers recursive call structure. This essentally reverts a portion of commit 7027bb256d0d1ab which added a linear time computation for accessing sections after fields. Update typelib validator to also ensure n_field_callbacks is properly set. https://bugzilla.gnome.org/show_bug.cgi?id=700338
Diffstat (limited to 'girepository/girnode.h')
-rw-r--r--girepository/girnode.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/girepository/girnode.h b/girepository/girnode.h
index 02196e7f..e4ce85a4 100644
--- a/girepository/girnode.h
+++ b/girepository/girnode.h
@@ -358,7 +358,8 @@ void _g_ir_node_build_typelib (GIrNode *node,
GIrNode *parent,
GIrTypelibBuild *build,
guint32 *offset,
- guint32 *offset2);
+ guint32 *offset2,
+ guint16 *count2);
int _g_ir_node_cmp (GIrNode *node,
GIrNode *other);
gboolean _g_ir_node_can_have_member (GIrNode *node);