X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2Fgui%2Fcontrolflow%2Fprocesslist.c;h=644cce52c8cc87cb61e1f515f2ad804f64377155;hb=6550d71135aed5d81a76d7d5625757570bcf0819;hp=727f74ed0e3752765b020aa7af4981f55859d4b1;hpb=88237536a72d70abfc670286eae1cf7c44c1a50b;p=lttv.git diff --git a/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c b/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c index 727f74ed..644cce52 100644 --- a/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c +++ b/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c @@ -32,7 +32,7 @@ * Methods to synchronize process list * *****************************************************************************/ -//static __inline__ guint get_cpu_number_from_name(GQuark name); +//static inline guint get_cpu_number_from_name(GQuark name); /* Enumeration of the columns */ enum @@ -442,7 +442,7 @@ GtkWidget *processlist_get_widget(ProcessList *process_list) -static __inline__ gint get_cell_height(ProcessList *process_list, GtkTreeView *tree_view) +static inline gint get_cell_height(ProcessList *process_list, GtkTreeView *tree_view) { gint height = process_list->cell_height_cache; if(height != -1) return height; @@ -592,59 +592,8 @@ int processlist_remove( ProcessList *process_list, } -__inline__ guint processlist_get_height(ProcessList *process_list) -{ - return get_cell_height(process_list, - (GtkTreeView*)process_list->process_list_widget) - * process_list->number_of_process ; -} - - -__inline__ HashedProcessData *processlist_get_process_data( - ProcessList *process_list, - guint pid, guint cpu, LttTime *birth, guint trace_num) -{ - ProcessInfo process_info; - gint *path_indices; - GtkTreePath *tree_path; - - process_info.pid = pid; - if(pid == 0) - process_info.cpu = cpu; - else - process_info.cpu = 0; - process_info.birth = *birth; - process_info.trace_num = trace_num; - - return (HashedProcessData*)g_hash_table_lookup( - process_list->process_hash, - &process_info); -} - - -__inline__ gint processlist_get_pixels_from_data( ProcessList *process_list, - HashedProcessData *hashed_process_data, - guint *y, - guint *height) -{ - gint *path_indices; - GtkTreePath *tree_path; - - tree_path = gtk_tree_model_get_path((GtkTreeModel*)process_list->list_store, - &hashed_process_data->y_iter); - path_indices = gtk_tree_path_get_indices (tree_path); - - *height = get_cell_height(process_list, - (GtkTreeView*)process_list->process_list_widget); - *y = *height * path_indices[0]; - gtk_tree_path_free(tree_path); - - return 0; - -} - #if 0 -static __inline__ guint get_cpu_number_from_name(GQuark name) +static inline guint get_cpu_number_from_name(GQuark name) { const gchar *string; char *begin;