sort the list..
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / processlist.c
CommitLineData
ce0214a6 1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Mathieu Desnoyers
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16 * MA 02111-1307, USA.
17 */
f0d936c0 18
fa2c4dbe 19#include <gtk/gtk.h>
20#include <glib.h>
a95bc95a 21#include <string.h>
22#include <stdlib.h>
1c736ed5 23#include <math.h>
d66666fe 24
25#include "processlist.h"
1c736ed5 26#include "drawing.h"
d66666fe 27#include "drawitem.h"
fa2c4dbe 28
ca0f8a8e 29#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
30#define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
31
1c736ed5 32/* Preallocated Size of the index_to_pixmap array */
33#define ALLOCATE_PROCESSES 1000
ca0f8a8e 34
f0d936c0 35/*****************************************************************************
36 * Methods to synchronize process list *
37 *****************************************************************************/
38
f0d936c0 39
a56a1ba4 40gint process_sort_func ( GtkTreeModel *model,
41 GtkTreeIter *it_a,
42 GtkTreeIter *it_b,
43 gpointer user_data)
fa2c4dbe 44{
117986b7 45 gchar *a_name;
46 guint a_pid, a_ppid, a_cpu;
47 gulong a_birth_s, a_birth_ns;
48 gulong a_trace;
49
50 gchar *b_name;
51 guint b_pid, b_ppid, b_cpu;
52 gulong b_birth_s, b_birth_ns;
53 gulong b_trace;
54
55 gtk_tree_model_get(model,
56 it_a,
57 0, &a_name,
58 1, &a_pid,
59 2, &a_ppid,
60 3, &a_cpu,
61 4, &a_birth_s,
62 5, &a_birth_ns,
63 6, &a_trace,
64 -1);
65
66 gtk_tree_model_get(model,
67 it_b,
68 0, &b_name,
69 1, &b_pid,
70 2, &b_ppid,
71 3, &b_cpu,
72 4, &b_birth_s,
73 5, &b_birth_ns,
74 6, &b_trace,
75 -1);
a56a1ba4 76
a56a1ba4 77
78 /* Order by PID */
117986b7 79 if(a_pid == 0 && b_pid == 0) {
80 /* If 0, order by CPU */
81 if(a_cpu > b_cpu) return 1;
18e29396 82 if(a_cpu < b_cpu) return -1;
a56a1ba4 83
117986b7 84 } else { /* if not 0, order by pid */
a56a1ba4 85
117986b7 86 if(a_pid > b_pid) return 1;
18e29396 87 if(a_pid < b_pid) return -1;
a56a1ba4 88 }
89
a56a1ba4 90 /* Order by birth second */
a56a1ba4 91
117986b7 92 if(a_birth_s > b_birth_s) return 1;
18e29396 93 if(a_birth_s < b_birth_s) return -1;
117986b7 94
a56a1ba4 95
96 /* Order by birth nanosecond */
117986b7 97 if(a_birth_ns > b_birth_ns) return 1;
18e29396 98 if(a_birth_ns < b_birth_ns) return -1;
a56a1ba4 99
d0cd7f09 100 /* Order by trace_num */
117986b7 101 if(a_trace > b_trace) return 1;
18e29396 102 if(a_trace < b_trace) return -1;
d0cd7f09 103
a56a1ba4 104 return 0;
fa2c4dbe 105
106}
107
7893f726 108static guint process_list_hash_fct(gconstpointer key)
fa2c4dbe 109{
2eef04b5 110 guint pid = ((const ProcessInfo*)key)->pid;
111 return ((pid>>8 ^ pid>>4 ^ pid>>2 ^ pid) ^ ((const ProcessInfo*)key)->cpu);
fa2c4dbe 112}
113
1d1df11d 114/* If hash is good, should be different */
7893f726 115static gboolean process_list_equ_fct(gconstpointer a, gconstpointer b)
fa2c4dbe 116{
a95bc95a 117 const ProcessInfo *pa = (const ProcessInfo*)a;
118 const ProcessInfo *pb = (const ProcessInfo*)b;
7893f726 119
1d1df11d 120 gboolean ret = TRUE;
121
122 if(likely(pa->pid != pb->pid))
123 ret = FALSE;
124 else if(likely((pa->pid == 0 && (pa->cpu != pb->cpu))))
125 ret = FALSE;
126 else if(unlikely(ltt_time_compare(pa->birth, pb->birth) != 0))
127 ret = FALSE;
128 else if(unlikely(pa->trace_num != pb->trace_num))
129 ret = FALSE;
130
131 return ret;
fa2c4dbe 132}
133
4c69e0cc 134void destroy_hash_key(gpointer key);
fa2c4dbe 135
4c69e0cc 136void destroy_hash_data(gpointer data);
fa2c4dbe 137
138
1c736ed5 139static void update_index_to_pixmap_each(ProcessInfo *key,
140 HashedProcessData *value,
141 ProcessList *process_list)
142{
143 guint array_index = processlist_get_index_from_data(process_list, value);
144
145 g_assert(array_index < process_list->index_to_pixmap->len);
146
147 GdkPixmap **pixmap =
148 (GdkPixmap**)&g_ptr_array_index(process_list->index_to_pixmap, array_index);
149
150 *pixmap = value->pixmap;
151}
152
153
7c0125e0 154void update_index_to_pixmap(ProcessList *process_list)
1c736ed5 155{
156 g_ptr_array_set_size(process_list->index_to_pixmap,
157 g_hash_table_size(process_list->process_hash));
158 g_hash_table_foreach(process_list->process_hash,
159 (GHFunc)update_index_to_pixmap_each,
160 process_list);
161}
162
163
164static void update_pixmap_size_each(ProcessInfo *key,
165 HashedProcessData *value,
166 guint width)
167{
168 GdkPixmap *old_pixmap = value->pixmap;
169
170 value->pixmap =
171 gdk_pixmap_new(old_pixmap,
172 width,
173 value->height,
174 -1);
175
176 gdk_pixmap_unref(old_pixmap);
177}
178
179
180void update_pixmap_size(ProcessList *process_list, guint width)
181{
182 g_hash_table_foreach(process_list->process_hash,
183 (GHFunc)update_pixmap_size_each,
184 (gpointer)width);
185}
186
187
188typedef struct _CopyPixmap {
189 GdkDrawable *dest;
190 GdkGC *gc;
191 GdkDrawable *src;
192 gint xsrc, ysrc, xdest, ydest, width, height;
193} CopyPixmap;
194
195static void copy_pixmap_region_each(ProcessInfo *key,
196 HashedProcessData *value,
197 CopyPixmap *cp)
198{
199 GdkPixmap *src = cp->src;
200 GdkPixmap *dest = cp->dest;
201
202 if(dest == NULL)
203 dest = value->pixmap;
204 if(src == NULL)
205 src = value->pixmap;
206
207 gdk_draw_drawable (dest,
208 cp->gc,
209 src,
210 cp->xsrc, cp->ysrc,
211 cp->xdest, cp->ydest,
212 cp->width, cp->height);
213}
214
215
216
217
218void copy_pixmap_region(ProcessList *process_list, GdkDrawable *dest,
219 GdkGC *gc, GdkDrawable *src,
220 gint xsrc, gint ysrc,
221 gint xdest, gint ydest, gint width, gint height)
222{
223 CopyPixmap cp = { dest, gc, src, xsrc, ysrc, xdest, ydest, width, height };
224
225 g_hash_table_foreach(process_list->process_hash,
226 (GHFunc)copy_pixmap_region_each,
227 &cp);
228}
229
230
231
232typedef struct _RectanglePixmap {
233 gboolean filled;
234 gint x, y, width, height;
235 GdkGC *gc;
236} RectanglePixmap;
237
238static void rectangle_pixmap_each(ProcessInfo *key,
239 HashedProcessData *value,
240 RectanglePixmap *rp)
241{
242 if(rp->height == -1)
243 rp->height = value->height;
244
245 gdk_draw_rectangle (value->pixmap,
246 rp->gc,
247 rp->filled,
248 rp->x, rp->y,
249 rp->width, rp->height);
250}
251
252
253
254
255void rectangle_pixmap(ProcessList *process_list, GdkGC *gc,
256 gboolean filled, gint x, gint y, gint width, gint height)
257{
258 RectanglePixmap rp = { filled, x, y, width, height, gc };
259
260 g_hash_table_foreach(process_list->process_hash,
261 (GHFunc)rectangle_pixmap_each,
262 &rp);
263}
264
265
266/* Renders each pixmaps into on big drawable */
267void copy_pixmap_to_screen(ProcessList *process_list,
268 GdkDrawable *dest,
269 GdkGC *gc,
270 gint x, gint y,
271 gint width, gint height)
272{
866fefbd 273 if(process_list->index_to_pixmap->len == 0) return;
274 guint cell_height = process_list->cell_height;
275
276 //cell_height = 24; //FIXME
1c736ed5 277 /* Get indexes */
278 gint begin = floor(y/(double)cell_height);
279 gint end = MIN(ceil((y+height)/(double)cell_height),
280 process_list->index_to_pixmap->len);
281 gint i;
cc09b702 282
1c736ed5 283 for(i=begin; i<end; i++) {
284 g_assert(i<process_list->index_to_pixmap->len);
285 /* Render the pixmap to the screen */
286 GdkPixmap *pixmap =
287 (GdkPixmap*)g_ptr_array_index(process_list->index_to_pixmap, i);
288
289 gdk_draw_drawable (dest,
290 gc,
291 pixmap,
292 x, 0,
293 x, i*cell_height,
294 width, cell_height);
295
296 }
297
298
299}
300
301
302
303
304
305
306
fa2c4dbe 307
308
4c69e0cc 309ProcessList *processlist_construct(void)
f0d936c0 310{
a56a1ba4 311 GtkTreeViewColumn *column;
312 GtkCellRenderer *renderer;
313
ba90bc77 314 ProcessList* process_list = g_new(ProcessList,1);
a56a1ba4 315
ba90bc77 316 process_list->number_of_process = 0;
a56a1ba4 317
4e86ae2e 318 process_list->current_hash_data = NULL;
319
a56a1ba4 320 /* Create the Process list */
f5d980bf 321 process_list->list_store = gtk_list_store_new ( N_COLUMNS,
a56a1ba4 322 G_TYPE_STRING,
323 G_TYPE_UINT,
e92eabaf 324 G_TYPE_UINT,
a95bc95a 325 G_TYPE_UINT,
a56a1ba4 326 G_TYPE_ULONG,
d0cd7f09 327 G_TYPE_ULONG,
a56a1ba4 328 G_TYPE_ULONG);
329
330
f5d980bf 331 process_list->process_list_widget =
a56a1ba4 332 gtk_tree_view_new_with_model
f5d980bf 333 (GTK_TREE_MODEL (process_list->list_store));
f3b7430d 334
f5d980bf 335 g_object_unref (G_OBJECT (process_list->list_store));
a56a1ba4 336
f3b7430d 337 gtk_tree_sortable_set_default_sort_func(
f5d980bf 338 GTK_TREE_SORTABLE(process_list->list_store),
a56a1ba4 339 process_sort_func,
340 NULL,
341 NULL);
80fdc3cb 342
343
344 gtk_tree_sortable_set_sort_column_id(
345 GTK_TREE_SORTABLE(process_list->list_store),
346 GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID,
347 GTK_SORT_ASCENDING);
348
349
14963be0 350 process_list->process_hash = g_hash_table_new_full(
7893f726 351 process_list_hash_fct, process_list_equ_fct,
a56a1ba4 352 destroy_hash_key, destroy_hash_data
353 );
354
355
356 gtk_tree_view_set_headers_visible(
3cb8b205 357 GTK_TREE_VIEW(process_list->process_list_widget), TRUE);
a56a1ba4 358
359 /* Create a column, associating the "text" attribute of the
360 * cell_renderer to the first column of the model */
361 /* Columns alignment : 0.0 : Left 0.5 : Center 1.0 : Right */
362 renderer = gtk_cell_renderer_text_new ();
866fefbd 363 process_list->renderer = renderer;
364
365 gtk_cell_renderer_get_size(renderer,
366 GTK_WIDGET(process_list->process_list_widget),
367 NULL,
368 NULL,
369 NULL,
370 NULL,
371 &process_list->cell_height);
372
85690c4b 373 guint ypad;
374 g_object_get(G_OBJECT(renderer), "ypad", &ypad, NULL);
375
376 process_list->cell_height += ypad;
377
a56a1ba4 378 column = gtk_tree_view_column_new_with_attributes ( "Process",
379 renderer,
380 "text",
381 PROCESS_COLUMN,
382 NULL);
383 gtk_tree_view_column_set_alignment (column, 0.0);
384 gtk_tree_view_column_set_fixed_width (column, 45);
385 gtk_tree_view_append_column (
f5d980bf 386 GTK_TREE_VIEW (process_list->process_list_widget), column);
b9a010a2 387
388 process_list->button = column->button;
389
a56a1ba4 390 column = gtk_tree_view_column_new_with_attributes ( "PID",
391 renderer,
392 "text",
393 PID_COLUMN,
394 NULL);
395 gtk_tree_view_append_column (
f5d980bf 396 GTK_TREE_VIEW (process_list->process_list_widget), column);
a56a1ba4 397
e92eabaf 398 column = gtk_tree_view_column_new_with_attributes ( "PPID",
399 renderer,
400 "text",
401 PPID_COLUMN,
402 NULL);
403 gtk_tree_view_append_column (
404 GTK_TREE_VIEW (process_list->process_list_widget), column);
a95bc95a 405
406 column = gtk_tree_view_column_new_with_attributes ( "CPU",
407 renderer,
408 "text",
409 CPU_COLUMN,
410 NULL);
411 gtk_tree_view_append_column (
412 GTK_TREE_VIEW (process_list->process_list_widget), column);
a56a1ba4 413
414 column = gtk_tree_view_column_new_with_attributes ( "Birth sec",
415 renderer,
416 "text",
417 BIRTH_S_COLUMN,
418 NULL);
419 gtk_tree_view_append_column (
f5d980bf 420 GTK_TREE_VIEW (process_list->process_list_widget), column);
a56a1ba4 421
422 //gtk_tree_view_column_set_visible(column, 0);
423 //
424 column = gtk_tree_view_column_new_with_attributes ( "Birth nsec",
425 renderer,
426 "text",
427 BIRTH_NS_COLUMN,
428 NULL);
429 gtk_tree_view_append_column (
f5d980bf 430 GTK_TREE_VIEW (process_list->process_list_widget), column);
a56a1ba4 431
d0cd7f09 432 column = gtk_tree_view_column_new_with_attributes ( "TRACE",
433 renderer,
434 "text",
435 TRACE_COLUMN,
436 NULL);
437 gtk_tree_view_append_column (
438 GTK_TREE_VIEW (process_list->process_list_widget), column);
439
440
a56a1ba4 441 //gtk_tree_view_column_set_visible(column, 0);
442
443 g_object_set_data_full(
f5d980bf 444 G_OBJECT(process_list->process_list_widget),
ba90bc77 445 "process_list_Data",
446 process_list,
a56a1ba4 447 (GDestroyNotify)processlist_destroy);
448
1c736ed5 449 process_list->index_to_pixmap = g_ptr_array_sized_new(ALLOCATE_PROCESSES);
450
ba90bc77 451 return process_list;
f0d936c0 452}
b9a010a2 453
ba90bc77 454void processlist_destroy(ProcessList *process_list)
f0d936c0 455{
b9a010a2 456 g_debug("processlist_destroy %p", process_list);
14963be0 457 g_hash_table_destroy(process_list->process_hash);
458 process_list->process_hash = NULL;
1c736ed5 459 g_ptr_array_free(process_list->index_to_pixmap, TRUE);
f0d936c0 460
ba90bc77 461 g_free(process_list);
b9a010a2 462 g_debug("processlist_destroy end");
463}
464
465static gboolean remove_hash_item(ProcessInfo *process_info,
466 HashedProcessData *hashed_process_data,
467 ProcessList *process_list)
468{
b9a010a2 469 GtkTreeIter iter;
470
ad96f4a0 471 iter = hashed_process_data->y_iter;
b9a010a2 472
473 gtk_list_store_remove (process_list->list_store, &iter);
1c736ed5 474 gdk_pixmap_unref(hashed_process_data->pixmap);
b9a010a2 475
1d1df11d 476 if(likely(process_list->current_hash_data != NULL)) {
477 if(likely(hashed_process_data ==
478 process_list->current_hash_data[process_info->cpu]))
d2d199a6 479 process_list->current_hash_data[process_info->cpu] = NULL;
480 }
b9a010a2 481 return TRUE; /* remove the element from the hash table */
f0d936c0 482}
483
b9a010a2 484void processlist_clear(ProcessList *process_list)
485{
486 g_info("processlist_clear %p", process_list);
487
488 g_hash_table_foreach_remove(process_list->process_hash,
489 (GHRFunc)remove_hash_item,
490 (gpointer)process_list);
491 process_list->number_of_process = 0;
1c736ed5 492 update_index_to_pixmap(process_list);
b9a010a2 493}
494
495
ba90bc77 496GtkWidget *processlist_get_widget(ProcessList *process_list)
f0d936c0 497{
f5d980bf 498 return process_list->process_list_widget;
f0d936c0 499}
500
501
4c69e0cc 502void destroy_hash_key(gpointer key)
f0d936c0 503{
a56a1ba4 504 g_free(key);
fa2c4dbe 505}
506
4c69e0cc 507void destroy_hash_data(gpointer data)
fa2c4dbe 508{
a56a1ba4 509 g_free(data);
fa2c4dbe 510}
511
ba90bc77 512int processlist_add( ProcessList *process_list,
1c736ed5 513 Drawing_t *drawing,
a56a1ba4 514 guint pid,
a95bc95a 515 guint cpu,
e92eabaf 516 guint ppid,
a56a1ba4 517 LttTime *birth,
d0cd7f09 518 guint trace_num,
51705146 519 const gchar *name,
a56a1ba4 520 guint *height,
4e86ae2e 521 ProcessInfo **pm_process_info,
f5d980bf 522 HashedProcessData **pm_hashed_process_data)
fa2c4dbe 523{
a56a1ba4 524 ProcessInfo *Process_Info = g_new(ProcessInfo, 1);
14963be0 525 HashedProcessData *hashed_process_data = g_new(HashedProcessData, 1);
f5d980bf 526 *pm_hashed_process_data = hashed_process_data;
4e86ae2e 527 *pm_process_info = Process_Info;
a56a1ba4 528
529 Process_Info->pid = pid;
a95bc95a 530 if(pid == 0)
531 Process_Info->cpu = cpu;
532 else
533 Process_Info->cpu = 0;
e92eabaf 534 Process_Info->ppid = ppid;
a56a1ba4 535 Process_Info->birth = *birth;
d0cd7f09 536 Process_Info->trace_num = trace_num;
b9a010a2 537
538 /* When we create it from before state update, we are sure that the
539 * last event occured before the beginning of the global area.
540 *
541 * If it is created after state update, this value (0) will be
542 * overriden by the new state before anything is drawn.
543 */
23093869 544 hashed_process_data->x.over = 0;
e72908ed 545 hashed_process_data->x.over_used = FALSE;
b2743953 546 hashed_process_data->x.over_marked = FALSE;
23093869 547 hashed_process_data->x.middle = 0;
e72908ed 548 hashed_process_data->x.middle_used = FALSE;
b2743953 549 hashed_process_data->x.middle_marked = FALSE;
23093869 550 hashed_process_data->x.under = 0;
e72908ed 551 hashed_process_data->x.under_used = FALSE;
b2743953 552 hashed_process_data->x.under_marked = FALSE;
553 hashed_process_data->next_good_time = ltt_time_zero;
1c736ed5 554
a56a1ba4 555 /* Add a new row to the model */
ad96f4a0 556 gtk_list_store_append ( process_list->list_store,
557 &hashed_process_data->y_iter);
558
559 gtk_list_store_set ( process_list->list_store, &hashed_process_data->y_iter,
a56a1ba4 560 PROCESS_COLUMN, name,
561 PID_COLUMN, pid,
e92eabaf 562 PPID_COLUMN, ppid,
40debf7b 563 CPU_COLUMN, cpu,
a56a1ba4 564 BIRTH_S_COLUMN, birth->tv_sec,
565 BIRTH_NS_COLUMN, birth->tv_nsec,
d0cd7f09 566 TRACE_COLUMN, trace_num,
a56a1ba4 567 -1);
866fefbd 568 //gtk_tree_view_set_model(GTK_TREE_VIEW(process_list->process_list_widget),
569 // GTK_TREE_MODEL(process_list->list_store));
570 //gtk_container_resize_children(GTK_CONTAINER(process_list->process_list_widget));
571
a95bc95a 572 g_hash_table_insert(process_list->process_hash,
a56a1ba4 573 (gpointer)Process_Info,
14963be0 574 (gpointer)hashed_process_data);
a56a1ba4 575
ba90bc77 576 process_list->number_of_process++;
a56a1ba4 577
866fefbd 578 hashed_process_data->height = process_list->cell_height;
579
580 //hashed_process_data->height = 24; // FIXME
1c736ed5 581 g_assert(hashed_process_data->height != 0);
582
583 *height = hashed_process_data->height * process_list->number_of_process;
584
585 hashed_process_data->pixmap =
586 gdk_pixmap_new(drawing->drawing_area->window,
587 drawing->alloc_width,
588 hashed_process_data->height,
589 -1);
a56a1ba4 590
1c736ed5 591 // Clear the image
592 gdk_draw_rectangle (hashed_process_data->pixmap,
593 drawing->drawing_area->style->black_gc,
594 TRUE,
595 0, 0,
596 drawing->alloc_width,
597 hashed_process_data->height);
598
599 update_index_to_pixmap(process_list);
600
601
a56a1ba4 602 return 0;
f0d936c0 603}
604
ba90bc77 605int processlist_remove( ProcessList *process_list,
a56a1ba4 606 guint pid,
a95bc95a 607 guint cpu,
d0cd7f09 608 LttTime *birth,
609 guint trace_num)
f0d936c0 610{
4e86ae2e 611 ProcessInfo process_info;
14963be0 612 HashedProcessData *hashed_process_data;
a56a1ba4 613 GtkTreeIter iter;
614
4e86ae2e 615 process_info.pid = pid;
324cdea4 616 if(pid == 0)
4e86ae2e 617 process_info.cpu = cpu;
324cdea4 618 else
4e86ae2e 619 process_info.cpu = 0;
620 process_info.birth = *birth;
621 process_info.trace_num = trace_num;
a56a1ba4 622
623
1d1df11d 624 hashed_process_data =
a56a1ba4 625 (HashedProcessData*)g_hash_table_lookup(
14963be0 626 process_list->process_hash,
1d1df11d 627 &process_info);
628 if(likely(hashed_process_data != NULL))
a56a1ba4 629 {
ad96f4a0 630 iter = hashed_process_data->y_iter;
a56a1ba4 631
f5d980bf 632 gtk_list_store_remove (process_list->list_store, &iter);
e800cf84 633
14963be0 634 g_hash_table_remove(process_list->process_hash,
4e86ae2e 635 &process_info);
636
1d1df11d 637 if(likely(process_list->current_hash_data != NULL)) {
638 if(likely(hashed_process_data == process_list->current_hash_data[cpu])) {
0e9000a1 639 process_list->current_hash_data[cpu] = NULL;
640 }
4e86ae2e 641 }
1c736ed5 642
643 gdk_pixmap_unref(hashed_process_data->pixmap);
644
645 update_index_to_pixmap(process_list);
646
ba90bc77 647 process_list->number_of_process--;
a56a1ba4 648
649 return 0;
650 } else {
651 return 1;
652 }
fa2c4dbe 653}
654
655
40debf7b 656#if 0
6550d711 657static inline guint get_cpu_number_from_name(GQuark name)
a95bc95a 658{
a95bc95a 659 const gchar *string;
660 char *begin;
661 guint cpu;
662
663 string = g_quark_to_string(name);
664
665 begin = strrchr(string, '/');
666 begin++;
667
668 g_assert(begin != '\0');
669
670 cpu = strtoul(begin, NULL, 10);
671
672 return cpu;
673}
40debf7b 674#endif //0
This page took 0.064564 seconds and 4 git commands to generate.