mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 17:53:56 +08:00
perf tools: Introduce dump_stack signal helper
To use in stdio based tools, like 'trace'. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Borislav Petkov <bp@suse.de> Cc: David Ahern <dsahern@gmail.com> Cc: Don Zickus <dzickus@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-79kjmerlw6d88csyx1afzwvn@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
280836812f
commit
07c1a0dadf
@ -269,6 +269,13 @@ void dump_stack(void)
|
||||
void dump_stack(void) {}
|
||||
#endif
|
||||
|
||||
void sighandler_dump_stack(int sig)
|
||||
{
|
||||
psignal(sig, "perf");
|
||||
dump_stack();
|
||||
exit(sig);
|
||||
}
|
||||
|
||||
void get_term_dimensions(struct winsize *ws)
|
||||
{
|
||||
char *s = getenv("LINES");
|
||||
|
@ -277,6 +277,7 @@ char *ltrim(char *s);
|
||||
char *rtrim(char *s);
|
||||
|
||||
void dump_stack(void);
|
||||
void sighandler_dump_stack(int sig);
|
||||
|
||||
extern unsigned int page_size;
|
||||
extern int cacheline_size;
|
||||
|
Loading…
Reference in New Issue
Block a user