-
Type:
Enhancement
-
Resolution: Fixed
-
Priority:
P3
-
None
-
Affects Version/s: repo-panama
-
Component/s: core-libs
Layout paths can be used to access elements that are nested inside a given segment. This is useful, but does not cover cases where a segment might contain pointers to other segment. Consider this case:
struct b {
int x;
};
struct a {
struct b *b;
};
It might be useful to have a way to refer to the layout path for "a->b.x".
struct b {
int x;
};
struct a {
struct b *b;
};
It might be useful to have a way to refer to the layout path for "a->b.x".