2 //gcc -o efl_thread_2 efl_thread_2.c -g `pkg-config --cflags --libs elementary`
3 #include <Elementary.h>
6 static Evas_Object *win = NULL;
7 static Evas_Object *rect = NULL;
14 static void *my_thread_mainloop_code(void *data);
16 static pthread_t thread_id;
18 // BEGIN - code running in my custom pthread instance
21 my_thread_run(void *arg)
27 struct info *inf = malloc(sizeof(struct info));
31 inf->x = 200 + (200 * sin(t));
32 inf->y = 200 + (200 * cos(t));
33 ecore_main_loop_thread_safe_call_sync
34 (my_thread_mainloop_code, inf);
43 // END - code running in my custom pthread instance
49 if (pthread_attr_init(&attr) != 0)
50 perror("pthread_attr_init");
51 if (pthread_create(&thread_id, &attr, my_thread_run, NULL) != 0)
52 perror("pthread_create");
56 my_thread_mainloop_code(void *data)
58 struct info *inf = data;
59 evas_object_move(rect, inf->x - 50, inf->y - 50);
65 elm_main(int argc, char **argv)
69 win = elm_win_add(NULL, "efl-thread-2", ELM_WIN_BASIC);
70 elm_win_title_set(win, "EFL Thread 2");
71 elm_win_autodel_set(win, EINA_TRUE);
72 elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);
73 evas_object_resize(win, 400, 400);
74 evas_object_show(win);
77 evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
78 elm_win_resize_object_add(win, bg);
81 o = evas_object_rectangle_add(evas_object_evas_get(win));
82 evas_object_color_set(o, 50, 80, 180, 255);
83 evas_object_resize(o, 100, 100);
87 // create custom thread to do some "work on the side"