mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-06 19:00:16 +01:00
exported-object: reorder fields in NMExportedObjectPrivate struct
For now, this doesn't change the overall size of the struct. But with the next commits this ordering allows tighter packing.
This commit is contained in:
parent
89f3f6ade0
commit
2b9462f172
1 changed files with 4 additions and 3 deletions
|
|
@ -39,16 +39,17 @@ G_DEFINE_ABSTRACT_TYPE_WITH_CODE (NMExportedObject, nm_exported_object, G_TYPE_D
|
|||
)
|
||||
|
||||
typedef struct {
|
||||
GSList *interfaces;
|
||||
|
||||
NMBusManager *bus_mgr;
|
||||
char *path;
|
||||
|
||||
GHashTable *pending_notifies;
|
||||
|
||||
GSList *interfaces;
|
||||
|
||||
guint notify_idle_id;
|
||||
|
||||
#ifdef _ASSERT_NO_EARLY_EXPORT
|
||||
gboolean _constructed;
|
||||
bool _constructed:1;
|
||||
#endif
|
||||
} NMExportedObjectPrivate;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue