mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
libsysprof-analyze: add superblock-options property
This lets you get the full string that was parsed from the mountinfo rather than having to go through our yet-to-be-implemented specific option API.
This commit is contained in:
@ -32,23 +32,25 @@ SYSPROF_AVAILABLE_IN_ALL
|
||||
G_DECLARE_FINAL_TYPE (SysprofMount, sysprof_mount, SYSPROF, MOUNT, GObject)
|
||||
|
||||
SYSPROF_AVAILABLE_IN_ALL
|
||||
int sysprof_mount_get_device_major (SysprofMount *self);
|
||||
int sysprof_mount_get_device_major (SysprofMount *self);
|
||||
SYSPROF_AVAILABLE_IN_ALL
|
||||
int sysprof_mount_get_device_minor (SysprofMount *self);
|
||||
int sysprof_mount_get_device_minor (SysprofMount *self);
|
||||
SYSPROF_AVAILABLE_IN_ALL
|
||||
int sysprof_mount_get_mount_id (SysprofMount *self);
|
||||
int sysprof_mount_get_mount_id (SysprofMount *self);
|
||||
SYSPROF_AVAILABLE_IN_ALL
|
||||
int sysprof_mount_get_parent_mount_id (SysprofMount *self);
|
||||
int sysprof_mount_get_parent_mount_id (SysprofMount *self);
|
||||
SYSPROF_AVAILABLE_IN_ALL
|
||||
const char *sysprof_mount_get_root (SysprofMount *self);
|
||||
const char *sysprof_mount_get_root (SysprofMount *self);
|
||||
SYSPROF_AVAILABLE_IN_ALL
|
||||
const char *sysprof_mount_get_mount_point (SysprofMount *self);
|
||||
const char *sysprof_mount_get_mount_point (SysprofMount *self);
|
||||
SYSPROF_AVAILABLE_IN_ALL
|
||||
const char *sysprof_mount_get_mount_source (SysprofMount *self);
|
||||
const char *sysprof_mount_get_mount_source (SysprofMount *self);
|
||||
SYSPROF_AVAILABLE_IN_ALL
|
||||
const char *sysprof_mount_get_filesystem_type (SysprofMount *self);
|
||||
const char *sysprof_mount_get_filesystem_type (SysprofMount *self);
|
||||
SYSPROF_AVAILABLE_IN_ALL
|
||||
const char *sysprof_mount_get_superblock_option (SysprofMount *self,
|
||||
const char *option);
|
||||
const char *sysprof_mount_get_superblock_options (SysprofMount *self);
|
||||
SYSPROF_AVAILABLE_IN_ALL
|
||||
const char *sysprof_mount_get_superblock_option (SysprofMount *self,
|
||||
const char *option);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
Reference in New Issue
Block a user