X-Git-Url: https://git.lttng.org/?p=lttngtop.git;a=blobdiff_plain;f=src%2Fcursesdisplay.c;h=d6befea5be042fe34f7d9647ed7b61c9eca94085;hp=eb0caa08deb8ba6d563f603690a84d76f330d7b2;hb=ceb3a2216fed5f405aa77c358328f71f44ed3303;hpb=b093de8aa1ac7555d20b3aa4227d4675b39ef008 diff --git a/src/cursesdisplay.c b/src/cursesdisplay.c index eb0caa0..d6befea 100644 --- a/src/cursesdisplay.c +++ b/src/cursesdisplay.c @@ -10,10 +10,9 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, - * MA 02111-1307, USA. + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -423,6 +422,7 @@ void update_process_details() double maxcputime; struct processtop *tmp = find_process_tid(data, selected_tid, selected_comm); struct files *file_tmp; + struct file_history *history = tmp->files_history; int i, j = 0; set_window_title(center, "Process details"); @@ -463,6 +463,15 @@ void update_process_details() j++; } } +/* + print_key_title("----------- Files History -----------",8+j); + j = 0; + while (history != NULL) { + file_tmp = history->file; + wprintw(center, "fd = %d\n", file_tmp->fd);//, file_tmp->fd); + history = history->next; + } +*/ } void update_perf() @@ -489,9 +498,9 @@ void update_perf() g_hash_table_iter_init(&iter, data->perf_list); while (g_hash_table_iter_next (&iter, &key, (gpointer) &perfn1)) { if (perfn1->visible) { - /* + 6 to strip the "_perf_" prefix */ + /* + 5 to strip the "perf_" prefix */ mvwprintw(center, 1, perf_row, "%s", - (char *) key + 6); + (char *) key + 5); perf_row += 20; } if (perfn1->sort) {