mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
libsysprof-analyze: allow two pointers for augmentation
This affords us the ability to shove memory statistics in the inline augmentation area for memprof data.
This commit is contained in:
@ -34,7 +34,7 @@ typedef struct _SysprofCallgraphSummary
|
||||
SysprofSymbol *symbol;
|
||||
EggBitset *traceables;
|
||||
GPtrArray *callers;
|
||||
gpointer augment;
|
||||
gpointer augment[2];
|
||||
} SysprofCallgraphSummary;
|
||||
|
||||
struct _SysprofCallgraphNode
|
||||
@ -44,7 +44,7 @@ struct _SysprofCallgraphNode
|
||||
SysprofCallgraphNode *next;
|
||||
SysprofCallgraphNode *children;
|
||||
SysprofCallgraphSummary *summary;
|
||||
gpointer augment;
|
||||
gpointer augment[2];
|
||||
};
|
||||
|
||||
struct _SysprofCallgraph
|
||||
|
||||
Reference in New Issue
Block a user