Changeset 106760 in webkit


Ignore:
Timestamp:
Feb 5, 2012 6:02:03 AM (12 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

[EFL] Remove g_thread_init() calls
https://bugs.webkit.org/show_bug.cgi?id=77828

Reviewed by Andreas Kling.

g_thread_init has been deprecated since glib 2.32. This function is no longer necessary.
The GLib threading system is automatically initialized at the start of your program.

  • ewk/ewk_main.cpp:

(_ewk_init_body):

Location:
trunk/Source/WebKit/efl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/efl/ChangeLog

    r106627 r106760  
     12012-02-05  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [EFL] Remove g_thread_init() calls
     4        https://bugs.webkit.org/show_bug.cgi?id=77828
     5
     6        Reviewed by Andreas Kling.
     7
     8        g_thread_init has been deprecated since glib 2.32. This function is no longer necessary.
     9        The GLib threading system is automatically initialized at the start of your program.
     10
     11        * ewk/ewk_main.cpp:
     12        (_ewk_init_body):
     13
    1142012-02-02  KwangHyuk Kim  <hyuki.kim@samsung.com>
    215
  • trunk/Source/WebKit/efl/ewk/ewk_main.cpp

    r106562 r106760  
    142142    g_type_init();
    143143
    144     if (!g_thread_supported())
    145         g_thread_init(0);
    146 
    147144    if (!ecore_main_loop_glib_integrate())
    148145        WRN("Ecore was not compiled with GLib support, some plugins will not "
Note: See TracChangeset for help on using the changeset viewer.