Re: [lttng-dev] Beginner question: how to inspect scheduling of multi-threaded user application?

2016-09-19 Thread Philippe Proulx
On Mon, Sep 19, 2016 at 11:38 AM, David Aldrich wrote: > > Hi Jonathan > > Thanks for your reply. What is 'comm' in 'prev_comm'? "comm" stands for "command". See this in sched.h: /* Task command name length */ #define TASK_COMM_LEN 16 Phil > > Best regards

Re: [lttng-dev] Beginner question: how to inspect scheduling of multi-threaded user application?

2016-09-19 Thread Jonathan Rajotte Julien
Hi, On 2016-09-19 11:38 AM, David Aldrich wrote: Hi Jonathan Thanks for your reply. What is 'comm' in 'prev_comm'? It correspond to the "comm" member of the task_struct struct [1]. The important part of [1]: char comm[TASK_COMM_LEN]; /* executable name excluding path

Re: [lttng-dev] Beginner question: how to inspect scheduling of multi-threaded user application?

2016-09-19 Thread David Aldrich
Hi Jonathan Thanks for your reply. What is 'comm' in 'prev_comm'? Best regards David > -Original Message- > From: lttng-dev [mailto:lttng-dev-boun...@lists.lttng.org] On Behalf Of > Jonathan Rajotte Julien > Sent: 16 September 2016 18:37 > To: lttng-dev@lists.lttng.org > Subject: Re: