mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-28 23:16:14 +01:00
Prepare for 2.9.0
This commit is contained in:
parent
2966c751b1
commit
f59aac306d
@ -1,5 +1,10 @@
|
|||||||
2005-11-17 Matthias Clasen <mclasen@redhat.com>
|
2005-11-17 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/glib.symbols: Updates
|
||||||
|
|
||||||
|
* glib/gutf8.c (g_utf8_offset_to_pointer): Add some performance
|
||||||
|
hints to the docs. (Paolo Borelli)
|
||||||
|
|
||||||
* NEWS: Updates
|
* NEWS: Updates
|
||||||
|
|
||||||
* glib/gthread.c (g_thread_foreach): Mark as new api.
|
* glib/gthread.c (g_thread_foreach): Mark as new api.
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
2005-11-17 Matthias Clasen <mclasen@redhat.com>
|
2005-11-17 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/glib.symbols: Updates
|
||||||
|
|
||||||
|
* glib/gutf8.c (g_utf8_offset_to_pointer): Add some performance
|
||||||
|
hints to the docs. (Paolo Borelli)
|
||||||
|
|
||||||
* NEWS: Updates
|
* NEWS: Updates
|
||||||
|
|
||||||
* glib/gthread.c (g_thread_foreach): Mark as new api.
|
* glib/gthread.c (g_thread_foreach): Mark as new api.
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
2005-11-17 Matthias Clasen <mclasen@redhat.com>
|
2005-11-17 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* glib/glib.symbols: Updates
|
||||||
|
|
||||||
|
* glib/gutf8.c (g_utf8_offset_to_pointer): Add some performance
|
||||||
|
hints to the docs. (Paolo Borelli)
|
||||||
|
|
||||||
* NEWS: Updates
|
* NEWS: Updates
|
||||||
|
|
||||||
* glib/gthread.c (g_thread_foreach): Mark as new api.
|
* glib/gthread.c (g_thread_foreach): Mark as new api.
|
||||||
|
@ -357,6 +357,24 @@ Sets the value of a #GDate from a Julian day number.
|
|||||||
@time_:
|
@time_:
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### FUNCTION g_date_set_time_t ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@date:
|
||||||
|
@timet:
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### FUNCTION g_date_set_time_val ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@date:
|
||||||
|
@timeval:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION g_date_set_parse ##### -->
|
<!-- ##### FUNCTION g_date_set_parse ##### -->
|
||||||
<para>
|
<para>
|
||||||
Parses a user-inputted string @str, and try to figure out what date it
|
Parses a user-inputted string @str, and try to figure out what date it
|
||||||
|
@ -30,7 +30,7 @@ list of hook functions.
|
|||||||
@hook_size: the size of the #GHookList elements, in bytes.
|
@hook_size: the size of the #GHookList elements, in bytes.
|
||||||
@is_setup: 1 if the #GHookList has been initialized.
|
@is_setup: 1 if the #GHookList has been initialized.
|
||||||
@hooks: the first #GHook element in the list.
|
@hooks: the first #GHook element in the list.
|
||||||
@hook_memchunk: the #GMemChunk used for allocating the #GHook elements.
|
@dummy3:
|
||||||
@finalize_hook: the function to call to finalize a #GHook element. The
|
@finalize_hook: the function to call to finalize a #GHook element. The
|
||||||
default behaviour is to call the hooks <function>destroy</function> function.
|
default behaviour is to call the hooks <function>destroy</function> function.
|
||||||
@dummy:
|
@dummy:
|
||||||
|
@ -424,6 +424,8 @@ Note that this function is not available if GLib has been compiled
|
|||||||
with <option>--disable-mem-pools</option>
|
with <option>--disable-mem-pools</option>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
@dummy:
|
||||||
|
<!-- # Unused Parameters # -->
|
||||||
@allocator: the #GAllocator to use when allocating #GSList elements.
|
@allocator: the #GAllocator to use when allocating #GSList elements.
|
||||||
|
|
||||||
|
|
||||||
|
@ -103,3 +103,21 @@ g_quark_from_string() or g_quark_from_static_string().
|
|||||||
#GQuark associated with the string.
|
#GQuark associated with the string.
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### FUNCTION g_intern_string ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@string:
|
||||||
|
@Returns:
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### FUNCTION g_intern_static_string ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@string:
|
||||||
|
@Returns:
|
||||||
|
|
||||||
|
|
||||||
|
@ -457,6 +457,15 @@ that will mess up the bookkeeping and lead to funny and unwanted results.
|
|||||||
@retval: the return value of this thread.
|
@retval: the return value of this thread.
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### FUNCTION g_thread_foreach ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@thread_func:
|
||||||
|
@user_data:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### STRUCT GMutex ##### -->
|
<!-- ##### STRUCT GMutex ##### -->
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
|
@ -527,6 +527,8 @@ Note that this function is not available if GLib has been compiled
|
|||||||
with <option>--disable-mem-pools</option>
|
with <option>--disable-mem-pools</option>
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
@dummy:
|
||||||
|
<!-- # Unused Parameters # -->
|
||||||
@allocator: the #GAllocator to use when allocating #GNode elements.
|
@allocator: the #GAllocator to use when allocating #GNode elements.
|
||||||
|
|
||||||
|
|
||||||
|
@ -326,7 +326,6 @@ See <ulink url="http://www.unicode.org/unicode/reports/tr14/"
|
|||||||
@G_UNICODE_BREAK_HANGUL_LV_SYLLABLE:
|
@G_UNICODE_BREAK_HANGUL_LV_SYLLABLE:
|
||||||
@G_UNICODE_BREAK_HANGUL_LVT_SYLLABLE:
|
@G_UNICODE_BREAK_HANGUL_LVT_SYLLABLE:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION g_unichar_break_type ##### -->
|
<!-- ##### FUNCTION g_unichar_break_type ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
|
@ -163,6 +163,7 @@ value_table's collect_value() function.
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
@value: An initialized #GValue structure.
|
@value: An initialized #GValue structure.
|
||||||
|
@instance:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION g_value_fits_pointer ##### -->
|
<!-- ##### FUNCTION g_value_fits_pointer ##### -->
|
||||||
|
@ -465,8 +465,14 @@ g_list_length
|
|||||||
g_list_nth
|
g_list_nth
|
||||||
g_list_nth_data
|
g_list_nth_data
|
||||||
g_list_nth_prev
|
g_list_nth_prev
|
||||||
|
#ifndef G_DISABLE_DEPRECATED
|
||||||
|
g_list_pop_allocator
|
||||||
|
#endif
|
||||||
g_list_position
|
g_list_position
|
||||||
g_list_prepend
|
g_list_prepend
|
||||||
|
#ifndef G_DISABLE_DEPRECATED
|
||||||
|
g_list_push_allocator
|
||||||
|
#endif
|
||||||
g_list_remove
|
g_list_remove
|
||||||
g_list_remove_all
|
g_list_remove_all
|
||||||
g_list_remove_link
|
g_list_remove_link
|
||||||
@ -641,7 +647,13 @@ g_node_n_children
|
|||||||
g_node_new
|
g_node_new
|
||||||
g_node_n_nodes
|
g_node_n_nodes
|
||||||
g_node_nth_child
|
g_node_nth_child
|
||||||
|
#ifndef G_DISABLE_DEPRECATED
|
||||||
|
g_node_pop_allocator
|
||||||
|
#endif
|
||||||
g_node_prepend
|
g_node_prepend
|
||||||
|
#ifndef G_DISABLE_DEPRECATED
|
||||||
|
g_node_push_allocator
|
||||||
|
#endif
|
||||||
g_node_reverse_children
|
g_node_reverse_children
|
||||||
g_node_traverse
|
g_node_traverse
|
||||||
g_node_unlink
|
g_node_unlink
|
||||||
@ -848,8 +860,14 @@ g_slist_last
|
|||||||
g_slist_length
|
g_slist_length
|
||||||
g_slist_nth
|
g_slist_nth
|
||||||
g_slist_nth_data
|
g_slist_nth_data
|
||||||
|
#ifndef G_DISABLE_DEPRECATED
|
||||||
|
g_slist_pop_allocator
|
||||||
|
#endif
|
||||||
g_slist_position
|
g_slist_position
|
||||||
g_slist_prepend
|
g_slist_prepend
|
||||||
|
#ifndef G_DISABLE_DEPRECATED
|
||||||
|
g_slist_push_allocator
|
||||||
|
#endif
|
||||||
g_slist_remove
|
g_slist_remove
|
||||||
g_slist_remove_all
|
g_slist_remove_all
|
||||||
g_slist_remove_link
|
g_slist_remove_link
|
||||||
|
@ -285,7 +285,9 @@ g_utf8_get_char (const gchar *p)
|
|||||||
* within the string.
|
* within the string.
|
||||||
*
|
*
|
||||||
* Since 2.10, this function allows to pass a negative @offset to
|
* Since 2.10, this function allows to pass a negative @offset to
|
||||||
* step backwards.
|
* step backwards. It is usually worth stepping backwards from the end
|
||||||
|
* instead of forwards if @offset is in the last fourth of the string,
|
||||||
|
* since moving forward is about 3 times faster than moving backward.
|
||||||
*
|
*
|
||||||
* Return value: the resulting pointer
|
* Return value: the resulting pointer
|
||||||
**/
|
**/
|
||||||
|
Loading…
Reference in New Issue
Block a user