mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
libsysprof-analyze: add plumbing to track overlays
This just gets the plumbing into place, we'll still need to use it to do the path translations.
This commit is contained in:
@ -147,6 +147,16 @@ sysprof_mount_namespace_add_mount (SysprofMountNamespace *self,
|
||||
g_ptr_array_add (self->mounts, mount);
|
||||
}
|
||||
|
||||
void
|
||||
sysprof_mount_namespace_add_overlay (SysprofMountNamespace *self,
|
||||
SysprofDocumentOverlay *overlay)
|
||||
{
|
||||
g_return_if_fail (SYSPROF_IS_MOUNT_NAMESPACE (self));
|
||||
g_return_if_fail (SYSPROF_IS_DOCUMENT_OVERLAY (overlay));
|
||||
|
||||
/* TODO */
|
||||
}
|
||||
|
||||
static SysprofMountDevice *
|
||||
sysprof_mount_namespace_find_device (SysprofMountNamespace *self,
|
||||
SysprofMount *mount,
|
||||
|
||||
Reference in New Issue
Block a user