Fix memory barrier position in g_atomic_int_get and g_atomic_pointer_get.
[platform/upstream/glib.git] / ChangeLog.pre-2-10
1 2005-12-17  Sebastian Wilhelmi  <seppi@seppi.de>
2
3         * glib/gatomic.c: Fix memory barrier position in g_atomic_int_get
4         and g_atomic_pointer_get. Add g_atomic_int_set and
5         g_atomic_pointer_set implementations for the !DEFINE_WITH_MUTEXES &&
6         G_ATOMIC_OP_MEMORY_BARRIER_NEEDED case, as well as defining them
7         as functions (additionally to the macros in the header) for the 
8         !G_ATOMIC_OP_MEMORY_BARRIER_NEEDED case.
9
10 2005-12-16  Matthias Clasen  <mclasen@redhat.com>
11
12         *  glib/gmem.c (g_allocator_new): Don't return a pointer to
13         a const struct, since apps expect to be able to modify it. 
14         (#324179, J. Ali Harlow)
15
16 Tue Dec 13 10:13:32 2005  Tim Janik  <timj@imendio.com>
17
18         * glib/gatomic.h: added g_atomic_pointer_set() and g_atomic_int_set()
19         for systems where the initialization of atomic variables requires a
20         write memory barrier.
21
22 2005-12-09  Matthias Clasen  <mclasen@redhat.com>
23
24         * configure.in: Bump version
25
26         * === Released 2.9.1 ===
27
28 2005-12-09  Alexander Larsson  <alexl@redhat.com>
29
30         * glib/glist.h: 
31         * glib/gslist.h:
32         Use G_GNUC_WARN_UNUSED_RESULT on list functions that return
33         the whole list.
34
35 2005-12-08  Matthias Clasen  <mclasen@redhat.com>
36
37         * NEWS: Updates
38
39 2005-12-07  Martyn Russell  <martyn@imendio.com>
40
41         * glib/gasyncqueue.c:
42         - Call g_queue_insert_sorted() instead of duplicating the code.
43         - Call g_queue_sort() instead of duplicating the code.
44         - Invert sort function results to make sure the same sort function
45         gives the same results across glist, gslist, gqueue and
46         gasyncqueue.
47
48         * tests/asyncqueue-test.c:
49         - Updated the sort function to reflect the example in the
50         documentation for gasyncqueue.c.
51
52 2005-12-07  Martyn Russell  <martyn@imendio.com>
53
54         * docs/reference/glib/glib-sections.txt:
55         * docs/reference/glib/tmpl/linked_lists_double.sgml:
56         * docs/reference/glib/tmpl/linked_lists_single.sgml:
57         * glib/glist.[ch]: 
58         * glib/gslist.[ch]: 
59         - Added g_list_insert_sorted_with_data () and
60         g_slist_insert_sorted_with_data ().
61         - Removed the extra check in g_list_sort() and g_slist_sort() for
62         GCompareDataFunc vs. GCompareFunc.
63         
64 2005-12-07  Tor Lillqvist  <tml@novell.com>
65
66         * glib-gettextize.in: Look up prefix at run-time on Win32,
67         assuming the standard directory structure with glib-gettextize in
68         $prefix/bin.
69
70 2005-12-06  Matthias Clasen  <mclasen@redhat.com>
71
72         * glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
73         we need GTK+ 2.8 to compile against GLib 2.10.
74
75 2005-12-05  Manish Singh  <yosh@gimp.org>
76
77         * tests/run-collate-test.sh: set LC_COLLATE, not LANG, to be sure
78         to override any user settings.
79
80 2005-12-05  Matthias Clasen  <mclasen@redhat.com>
81
82         * configure.in: Revert an accidential commit
83
84 2005-12-05  Matthias Clasen  <mclasen@redhat.com>
85
86         * glib/gutf8.c: Documentation updates.  (#323291, Morten Welinder)
87
88         * tests/Makefile.am (TESTS_ENVIRONMENT): 
89         * tests/gobject/Makefile.am (TESTS_ENVIRONMENT): Set
90         MALLOC_CHECK_ and MALLOC_PERTURB_
91
92         * tests/run-collate-tests.sh: Run the collation tests explicitly 
93         in en_US locale. (#320463)
94
95         * glib/gmem.h: Really deprecate GMemChunk.
96
97         * glib/gdate.c: 
98         * glib/gutils.c: 
99         * glib/gtree.c: 
100         * glib/gstring.c: 
101         * glib/giochannel.c: 
102         * glib/gstrfuncs.c: Add versioned deprecation docs. 
103
104 2005-12-05  Martyn Russell  <martyn@imendio.com>
105
106         * docs/reference/glib/glib-sections.txt:
107         * glib/gasyncqueue.[ch]:
108         - Added support for sorting async queues by with _push_sorted(),
109         _push_sorted_unlocked(), _sort() and _sort_unlocked() (#323047).
110         
111         * tests/Makefile.am:
112         * tests/asyncqueue-test.c:
113         - Added test case for gasyncqueue.c
114
115 Mon Dec  5 15:53:20 2005  Tim Janik  <timj@imendio.com>
116
117         * glib/gslice.c: implement chain walking for arbitrary ->next pointer
118         offsets in g_slice_free_chain_with_offset() based on a patch by behdad
119         in bug 323178. moved time consuming logic from g_slice_free() out of
120         the inner loop, so g_slice_free_chain_with_offset() provides a real
121         performance benefit over g_slice_free1() now.
122         
123         * glib/gslice.h: renamed g_slice_free_chain() to
124         g_slice_free_chain_with_offset(). implemented g_slice_free_chain() as
125         a type-safe macro as suggested in bug 323178.
126         simplified the macro implementation of g_slice_free() and implemented
127         it in a type safe manner for all compliers as suggested by Morten
128         Welinder <mortenw@gnome.org>.
129
130         * glib/gmain.c:
131         * glib/glist.c:
132         * glib/gslist.c:
133         * glib/glib.symbols: s/g_slice_free_chain/g_slice_free_chain_with_offset/
134
135 2005-12-05  Matthias Clasen  <mclasen@redhat.com>
136
137         * glib/gasyncqueue.c: Add some docs.
138
139         * tests/libmoduletestplugin_a.c: Fix compiler warnings.
140
141         * glib/gatomic.c: In the ia64 implementation, use
142         __sync builtin without _si or _di suffix.  (#321229,
143         Stanislav Brabec, patch by Andreas Schwab)
144
145 2005-12-04  Behdad Esfahbod  <behdad@gnome.org>
146
147         * glib/gslice.h: Remove comma at the end of enum.
148
149 2005-12-04  Matthias Clasen  <mclasen@redhat.com>
150
151         Handle multiple user names with the same UID better.
152         (#319535, Laszlo Peter)
153         
154         * glib/gutils.c (g_get_any_init_do): When determining user
155         data, first look up $LOGNAME. If the UID doesn't match
156         getuid(), fall back to the current behaviour of looking
157         up the user data based on getuid().
158
159 2005-12-04  Matthias Clasen  <mclasen@redhat.com>
160
161         * glib/gmacros.h (G_GNUC_WARN_UNUSED_RESULT): Add a macro
162         to make gcc warn if a function result is ignored.  (#145466,
163         Arjan van de Ven, Alex Larsson)
164
165         * glib/gmem.h: Add the new attribute to g_realloc and 
166         g_try_realloc.
167
168 2005-12-03  Matthias Clasen  <mclasen@redhat.com>
169
170         * glib/glib.symbols: 
171         * glib/gcache.h: Deprecate g_cache_value_foreach. (#322956,
172         Nicolas Caniart)
173
174         * glib/gmappedfile.c: Make mapping of empty files
175         work.  (#321530)
176         
177         * glib/gfileutils.c: Don't fork a new process just to 
178         fix the permissions of the created temp file.  (#321318,
179         Alexis S. L. Carvalho)
180
181 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
182
183         * README.in: Add a note about Solaris threads.
184
185         * glib/gspawn.c:
186         * configure.in: Remove support for Solaris threads. 
187         (#136971, Sebastian Wilhelmi, patch by Andrew Paprocki)
188
189 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
190
191         * configure.in: Define G_GUINT64_CONSTANT in analogy to
192         G_GINT64_CONSTANT.  (#322568, Andrew Paprocki)
193
194 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
195
196         * glib/gslice.c: Win32 portability fixes and C99ism removal,
197         pointed out by Kazuki Iwamoto.  (#323052)
198         
199 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
200
201         * glib/gatomic.c (g_atomic_int_add): Add a missing volatile for
202         the IA64 implementation.
203
204 Fri Dec  2 16:18:09 2005  Tim Janik  <timj@imendio.com>
205
206         * glib/gslice.c: some naming and type size fixups.
207
208 Fri Dec  2 13:08:58 2005  Tim Janik  <timj@gtk.org>
209
210         * glib/gslice.h (g_slice_free): reworked GCC-specific type-safe macro
211         variant into something less verbose, but digestible for gcc-3.4.
212
213 Fri Dec  2 10:55:07 2005  Tim Janik  <timj@imendio.com>
214
215         * tests/slice-test.c: extended to perform the benchmarking on the old
216         memchunk code if 'O' is selected.
217
218         * tests/memchunks.c: new file which contains the old GLib mem chunks
219         implementation with prefix old_mem_chunk_.
220
221         * tests/Makefile.am: added memchunks.c
222
223 Fri Dec  2 00:16:59 2005  Tim Janik  <timj@imendio.com>
224
225         * glib/gslice.c: improved gettimeofday() timer resolution by maintaining
226         acceptable load distribution of the syscall.
227         (allocator_get_magazine_threshold): reduce minimum/single-thread magazine
228         sizes to approximately page_size/2.5 to avoid excessive startup allocations.
229
230 2005-12-01  Matthias Clasen  <mclasen@redhat.com>
231
232         * tests/gobject/ifacecheck.c (test_iface_base_init): Don't
233         double-free base interface members.
234
235         * tests/Makefile.am: Remove duplicate variable.
236
237 Thu Dec  1 17:32:46 2005  Tim Janik  <timj@imendio.com>
238
239         * glib/gslice.[hc]: new slice allocator implementation.
240
241         * tests/slice-test.c: added random slice allocation test.
242
243         * glib/gthread.[hc]: removed newly added private thread mem API.
244
245         * glib/gthreadinit.h:
246         * glib/gmessages.c:
247         * glib/gthread.c:
248         * glib/gmem.c: divided glib threading initialisation into three phases,
249         initialisation where private keys and messaging are not available (only
250         needed by gmem.c), initialisation without messaging but private keys
251         available (gslice.c, gmessage.c), and full fledged initialisers that
252         server the rest of glib. initialisation functions got renamed to reflect
253         the limitations of their corresponding phases.
254
255         * glib/gmem.c: removed memchunk code, defer allocations to 
256         g_slice_* instead.
257
258         * glib/gmem.[hc]: removed g_slice_* skeletons.
259
260         * glib/glib.symbols: added g_slice_* symbols.
261
262         * configure.in: check for availability of posix_memalign(3), memalign(3)
263         and valloc(3). 
264
265         * glib/Makefile.am: added gslice.[hc].
266
267 2005-12-01  Tor Lillqvist  <tml@novell.com>
268
269         * glib/gstdio.c (g_stat): In the Win32 implementation, strip
270         trailing slash(es) for non-root folders. stat() fails if non-root
271         folders are specified with trailing slashes. It's too much hassle
272         to demand that callers strip such slashes themselves, especially
273         as it is easy to get it wrong and strip the slash of a root
274         folder.
275         (g_rename): On NT-based Windows, use MoveFileEx() with
276         MOVEFILE_REPLACE_EXISTING to better match Unix behaviour.
277
278 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
279
280         Fix G_STMT_START / G_STMT_END on Solaris.  (#321972,
281         Andrew Paprocki)
282         
283         * configure.in: Check whether do { } while (0) works.
284
285         * glib/gmacros.h: Use do { } while (0) for G_STMT_START / 
286         G_STMT_END if it works.
287         
288 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
289
290         * glib/gthread.c (g_static_rw_lock_wait, g_static_rw_lock_signal): 
291         * glib/gnode.c (g_node_depth_traverse_level): 
292         * glib/gmem.c (g_allocator_new): 
293         * glib/ghash.c (g_hash_table_unref, g_hash_table_destroy) 
294         (g_hash_table_foreach_remove_or_steal): Silence compiler
295         warnings.
296
297 2005-11-27  Matthias Clasen  <mclasen@redhat.com>
298
299         * glib/gunicollate.c (g_utf8_collate_key_for_filename): 
300         Don't read beyond len.  (#322520, Christian Persch)
301
302 Wed Nov 23 17:34:01 2005  Tim Janik  <timj@imendio.com>
303
304         * glib/gdataset.c: access datalist flags via atomic pointer access
305         functions, instead of acquiring the dataset lock. this is faster and
306         also matches the atomic pointer readouts in gdatalistprivate.h and
307         direct pointer modifications required by gobject.c.
308
309 Wed Nov 23 13:35:31 2005  Tim Janik  <timj@gtk.org>
310
311         * glib/gdataset.c: streamlined initialization code somewhat,
312         removed GData node cache.
313
314 2005-11-22  Matthias Clasen  <mclasen@redhat.com>
315
316         * glib/ghash.c (g_hash_table_ref): 
317         (g_hash_table_unref): Mark these as new API.
318
319         Avoid double locking in g_intern_string (#322133,
320         Benedikt Meurer)
321
322         * glib/gdataset.c (g_quark_from_string_internal): New 
323         internal function which factors out common parts of 
324         g_quark_from[_static]_string.
325         (g_quark_from_string, g_quark_from_static_string):
326         Use g_quark_from_string_internal.
327         (g_intern_string, g_intern_static_string): Use
328         g_quark_from_string_internal, and only take the
329         lock once.
330         (g_quark_new): Don't store the strings shifted by -1
331         in the g_quarks array.
332         (g_quark_to_string): Adapt to the previous change.
333
334 Tue Nov 22 14:04:26 2005  Tim Janik  <timj@imendio.com>
335
336         * glib/ghash.h: 
337         * glib/ghash.c: 
338         g_hash_table_new_full(): create hash tables with a ref count of 1.
339         g_hash_table_ref(): atomically ref_count+=1
340         g_hash_table_unref(): atomically ref_count-=1, destroys hash table
341         when refcount reaches 0.
342         g_hash_table_destroy(): just destroy keys and values, unref by 1.
343         g_hash_table_insert(): 
344         g_hash_table_replace(): assert ref_count>0.
345
346         * glib/gatomic.h: 
347         * glib/gatomic.c: added 'volatile' qualifier to all atomic pointer and
348         integer pointers.
349
350 2005-11-20  Behdad Esfahbod  <behdad@gnome.org>
351
352         * glib/guniprop.c (g_unichar_get_mirror_char): Remove unused
353         variables. (#321984, Andrew Paprocki)
354
355 2005-11-18  Matthias Clasen  <mclasen@redhat.com>
356
357         * configure.in: Bump version
358
359 2005-11-17  Matthias Clasen  <mclasen@redhat.com>
360
361         * === Released 2.9.0 ===
362
363         * glib/glib.symbols: Updates
364
365         * glib/gutf8.c (g_utf8_offset_to_pointer): Add some performance
366         hints to the docs. (Paolo Borelli)
367         
368         * NEWS: Updates
369
370         * glib/gthread.c (g_thread_foreach): Mark as new api.
371
372         * README.in: Updates.
373
374         * glib/glib.symbols: 
375         * glib/gdate.h: 
376         * glib/gdate.c (g_date_set_time_t): 
377         (g_date_set_time_val): Add functions to set a date from
378         a time_t and from a GTimeVal.
379         (g_date_set_time): Deprecate.  (#314067, Roger Leigh)
380         
381         * tests/Makefile.am:
382         * tests/utf8-pointer.c: Unit tests for g_utf8_pointer_to_offset
383         and g_utf8_offset_to_pointer.
384
385         * glib/gutf8.c (g_utf8_pointer_to_offset) 
386         (g_utf8_offset_to_pointer): Handle negative offsets, and use
387         "stutter stepping" for going backwards. (#320638, Larry
388         Ewing)
389
390         * glib/gbacktrace.c:
391         * glib/gdate.c:
392         * glib/gthread.c: const correctness fixes, found
393         by Arjan van de Ven and gcc.
394         
395 2005-11-16  Behdad Esfahbod  <behdad@gnome.org>
396
397         * docs/reference/glib/tmpl/unicode.sgml: Correct typo on mentioning
398         @G_UNICODE_BREAK_UNKNOWN that should be #G_UNICODE_BREAK_UNKNOWN.
399
400 2005-11-09  Behdad Esfahbod  <behdad@gnome.org>
401
402         * glib/guniprop.c: Use bit hacks instead when checking a general
403         category value against multiple values.
404
405         * glib/gutf8.c: Change ISO10646 to Unicode in docs.
406
407 2005-11-10  Simos Xenitellis  <simos@gnome.org>
408
409         * configure.in: Added tt (Tatar) to ALL_LINGUAS.
410
411 2005-11-05  Tor Lillqvist  <tml@novell.com>
412
413         * glib/giowin32.c (g_io_win32_set_flags): Don't call g_warning().
414         (#320688) Instead set error and return failure.
415
416 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
417
418         * glib/gmain.c (g_main_dispatch): Don't call cb_funcs->unref
419         while holding the context lock.  (#320886, Andy Wingo)
420
421 2005-11-07  Billy Biggs <vektor@dumbterm.net>
422
423         * tests/refcount/Makefile.am: Add a missing reference to libglib
424         in the LDADD for this test.
425
426 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
427
428         * glib/gmem.c (g_allocator_new): We need to set n_preallocs to a
429         nonzero value, otherwise GTK+ 2.8 breaks when compiled against
430         GLib 2.9.  (#320755, Luca Ferretti)
431
432 2005-11-04  Matthias Clasen  <mclasen@redhat.com>
433
434         * glib/Makefile.am: Apply a patch from Behdad Esfahbod to 
435         use a faster lookup table for g_unichar_get_mirror_char().
436         * glib/gmirroringtable.h: The new table.
437         * glib/gunichartables.h: Remove bidi_mirroring_table.
438         * glib/gen-unicode-tables.pl: Don't generate the mirroring
439         table.
440         * glib/glib-mirroring-tab/*: Sources for the program
441         which generated gmirroringtable.h.
442
443         * glib/glist.c: Avoid some code duplication.
444
445         * glib/gscanner.h: Include gdataset.h.  (#320322)
446
447         * glib/gdebug.h: add new GDebugFlag for fatal_criticals
448         * glib/gmessages.c: (_g_debug_init): handle G_DEBUG=fatal_criticals,
449         to help find critical warnings in applications.  (#320017,
450         Vincent Untz)
451
452 2005-11-02  Tor Lillqvist  <tml@novell.com>
453
454         * glib/glib.symbols: Remove large amount of trailing whitespace
455         from one line. Remove #ifdef G_UNDEFINED from around
456         g_hash_table_new and g_hash_table_new_full symbols, what was the
457         purpose of that? Add the g_slice functions.
458
459 Tue Nov  1 16:24:20 2005  Tim Janik  <timj@imendio.com>
460
461         * glib/gmem.[hc]: prepared deprecation of GMemChunk and GAllocator.
462         added g_slice_*() API to allocate and cache small bits of memory.
463         an actuall allocator implementation for g_slice_*() is still pending.
464
465         * glib/gthread.[hc]: changes from a patch by Matthias Clasen.
466         changed GRealThread list to use in-structure *next; fields instead
467         of GSList, in order for thread iteration to not depenend on g_slice_*()
468         indirectly.
469         _g_thread_mem_private_get():
470         _g_thread_mem_private_set(): added accessors for private memory,
471         needed because the ordinary GPrivate implementation relies on GArray
472         and GSList and therefore indirectly on working g_slice_*() allocations.
473
474         * glib/gthread.[hc]:
475         g_thread_foreach(): new public API function to loop over all existing threads.
476
477         * glib/gdataset.c:
478         * glib/gstring.c:
479         * glib/gcache.c:
480         * glib/garray.c: 
481         * glib/gqueue.c:
482         * glib/gslist.c:
483         * glib/glist.c:
484         * glib/ghash.c:
485         * glib/gtree.c:
486         * glib/ghook.c:
487         * glib/gmain.c:
488         * glib/gnode.c:
489         removed GAllocator and free list usages and accompanying locks.
490         use g_slice_*() API to allocate and cache small bits of memory.
491
492         * glib/ghook.h: removed GMemChunk field from public API.
493
494         * glib/gslist.h:
495         * glib/glist.h: deprecate allocator API, provide _free1() for consistency.
496
497         * glib/gnode.h: deprecate allocator API.
498
499         * glib/gmain.c: reordered GPollRec fields so g_slice_free_chain() can
500         be used for poll rec lists.
501
502         * glib/grel.c: removed mem chunk usage, and allocated tuples via g_slice_*().
503         g_relation_destroy(): free all tuples from the all_tuples hash table,
504         this effectively maintains the life time track keeping of tuples.
505         g_relation_delete_tuple(): free tuples which are removed from the
506         all_tuples hash table. this fixes a temporary leak that was present
507         in the memchunk code until the destruction of the relation.
508
509 2005-10-29  Matthias Clasen  <mclasen@redhat.com>
510
511         * tests/convert-test.c: Add some tests for conversions between
512         UTF-8, UCS-4 and UTF-16.
513
514         * glib/gutf8.c (g_utf8_to_ucs4, g_utf8_to_utf16): Fix handling
515         of len == -1, noticed by Morten Welinder.
516
517 2005-10-27  Erdal Ronahi  <erdal.ronahi@gmail.com>
518
519         * configure.in: Added ku (Kurdish) to ALL_LINGUAS
520
521 2005-10-26  Matthias Clasen  <mclasen@redhat.com>
522
523         * glib/gutf8.c (g_ucs4_to_utf8): Don't set items_read twice
524         in the error case, and add some documentation.  (#319806, Morten
525         Welinder)
526
527 2005-10-19  Manish Singh  <yosh@gimp.org>
528
529         * configure.in: Use AC_CHECK_FUNCS for _NSGetEnviron, to get the
530         config.h symbol automatically. Fixes bug #313731.
531
532 2005-10-19  Tor Lillqvist  <tml@novell.com>
533
534         * glib/gwin32.c (g_win32_get_package_installation_directory):
535         Return a g_strdup()ed copy of the value stored in the hash table,
536         so that it can be g_free()d without leaving a dangling pointer in
537         the hash table. (#319232)
538
539 2005-10-06  Matthias Clasen  <mclasen@redhat.com>
540
541         * glib/gunicollate.c (g_utf8_collate_key_for_filename): Handle
542         all-zero sequences correctly.  (#317930, Sebastien Bacher)
543
544 2005-10-05  Matthias Clasen  <mclasen@redhat.com>
545
546         * glib/gmarkup.c (g_markup_escape_text): Doc addition
547
548         * Makefile.am: Add Collation tests.
549
550         * tests/collate/*: Inputs and expected outputs for collation tests.
551
552         * tests/run-collate-tests.sh: Script to run collation tests.
553
554         * tests/unicode-collate.c (main): Rework slightly to make
555         it usable in unit tests. Also test g_utf8_collate_key_for_filename().
556
557 2005-10-01  Behdad Esfahbod  <behdad@gnome.org>
558
559         * docs/reference/glib/tmpl/unicode.sgml:
560         * glib/gen-unicode-tables.pl:
561         * glib/gunibreak.h:
562         * glib/gunichartables.h:
563         * glib/gunicode.h:
564         * tests/casefold.txt:
565         * tests/casemap.txt: Updated to Unicode 4.1.  There are five new
566         GUnicodeBreakType types.  That may break some applications, like
567         Pango <= 1.10.
568
569 2005-09-26  Matthias Clasen  <mclasen@redhat.com>
570
571         * glib/gstrfuncs.c (g_ascii_strtoull): Add details to the 
572         docs.  (#314393, Matthew F. Barnes)
573
574         * glib/glib.symbols:
575         * glib/gprintf.h: Remove g_snprintf() and g_vsnprintf(), since
576         they are already declared in glib.h. This doesn't break documented
577         use of gprintf.h, but should probably be pointed out in the 
578         release notes for 2.10. (#314232, Behdad Esfahbod)
579
580 Tue Sep 20 13:16:04 2005  Tim Janik  <timj@imendio.com>
581
582         * glib/gpattern.c (g_pattern_ph_match): applied significant recursion
583         complexity optimization, based on a patch from Matthias Clasen.
584
585         * tests/patterntest.c: more tests, mostly from matthias.
586
587 2005-09-20  Matthias Clasen  <mclasen@redhat.com>
588
589         * glib/gqueue.c (g_queue_insert_sorted): Correct the docs.
590         (#316703, Mark Drago)
591
592 Mon Sep 19 17:23:23 2005  Tim Janik  <timj@imendio.com>
593
594         * glib/gpattern.c: applied a patch from matthias which checks on the
595         upper bound of GPatternSpec length to optimize matches.
596         cosmetic fixups.
597
598         * tests/patterntest.c: added more match cases.
599
600 2005-09-16  Tor Lillqvist  <tml@novell.com>
601
602         * glib/gstrfuncs.c (g_ascii_strcasecmp, g_ascii_strncasecmp): Add
603         warning to doc comment that these functions should not be used on
604         encodings like CP932.
605
606 2005-09-14  Matthias Clasen  <mclasen@redhat.com>
607
608         * tests/keyfile-test.c: Add a test for grup names of length 1.
609
610         * glib/gkeyfile.c (g_key_file_line_is_group): Accept group names
611         of length 1.  (#316309)
612         
613 2005-09-12  Matthias Clasen  <mclasen@redhat.com>
614
615         * glib/gmarkup.c (g_markup_escape_text): Clarify docs.
616
617 2005-09-11  Sebastian Wilhelmi  <seppi@seppi.de>
618
619         * tests/refcount/Makefile.am (INCLUDES): Link the the refcount
620         tests to the system thread library $(G_THREAD_LIBS). Fixes #313744
621         and #314217.
622
623 2005-09-11  Kjartan Maraas  <kmaraas@gnome.org>
624
625         * glib/gmain.c: (g_child_watch_prepare), (g_child_watch_check),
626         (child_watch_helper_thread): Remove some dead code. Closes
627         bug #315278.
628
629 2005-09-07  Tor Lillqvist  <tml@novell.com>
630
631         * glib/Makefile.am: Create also a console version of the
632         gspawn-win32-helper program, gspawn-win32-helper-console.exe.
633         It's otherwise identical to gspawn-win32-helper.exe, except marked
634         as a console application (linked without the -mwindows option).
635         
636         * glib/gspawn-win32.c (do_spawn_directly, do_spawn_with_pipes):
637         Drop the dont_wait parameter. Its truth value correlated 100% with
638         the NULLness of the exit_status parameter anyway, so it's enough
639         to check whether exit_status is NULL. Invert the sense of the
640         dont_return_handle parameter and rename it to do_return_handle, to
641         make the code easier to read by avoiding double negations.
642
643         (g_spawn_sync_utf8, g_spawn_async_with_pipes_utf8): Modify calls
644         to do_spawn_with_pipes() accordingly.
645
646         (do_spawn_with_pipes): If we have a console, use the console
647         version of the helper program, otherwise use the GUI one. This
648         avoids extra console windows opening up in some situations. (In
649         case a console application uses the GUI gspawn-win32-helper.exe to
650         spawn another console application we would get a separate console
651         for the spawned console application).
652
653         * glib-zip.in: Distribute also gspawn-win32-helper-console.exe.
654
655 2005-09-05  Matthias Clasen  <mclasen@redhat.com>
656
657         * glib/gmappedfile.c (g_mapped_file_new): Report an error
658         if the file is too large.  (#315275, Kjartan Maraas)
659
660         * glib/gkeyfile.c (g_key_file_load_from_fd): The return value
661         of read() is signed.  (#315273, Kjartan Maraas)
662         
663 2005-08-31  Tor Lillqvist  <tml@novell.com>
664
665         * glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
666         the EXE and each DLL have their own atexit function chains.
667
668         #define g_atexit as atexit instead. This means it has a
669         better chance of doing what the caller wants. For instance,
670         gtkhtml calls g_atexit() registering a function in gtkhtml
671         itself. This caused a crash when g_atexit() was implemented as a
672         function in the GLib DLL. The gtkhtml DLL was already unloaded by
673         the time the GLib DLL got unloaded.
674
675         * glib/gutils.c: #undef the #define mentioned above, to also get a
676         real g_atexit() into the DLL for backward compatibility. Document
677         the Windows behaviour of g_atexit(), and document the varying ways
678         atexit() can behave in the context of dynamically loaded modules
679         on Unix.
680
681 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
682
683         * glib/glib.symbols: 
684         * glib/gquark.h: 
685         * glib/gdataset.c: Add string interning functions.
686
687 2005-08-28  Matthias Clasen  <mclasen@redhat.com>
688
689         * glib/giochannel.c: Unify some near-duplicate strings. (#314654,
690         Clytie Siddall)
691         
692 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
693
694         * configure.in: Bump version to 2.9.0
695
696 2005-08-25  Tor Lillqvist  <tml@novell.com>
697
698         Make also the g_spawn*() functions take parameters in the GLib
699         file name encoding, i.e. UTF-8, on Windows. Has no impact on Unix
700         API or ABI. Like the other GLib API that was earlier changed to
701         use UTF-8 on Windows, the names of the functions that take UTF-8
702         have _utf8 suffixes added by using preprocessor macros in the
703         header file. The old names are kept for functions with the old
704         behaviour, taking parameters in the system codepage, for DLL ABI
705         stability.
706         
707         * glib/gspawn.h: On Win32 add the suffix _utf8 to the names of the
708         g_spawn*() functions.
709         
710         * glib/gspawn-win32.c: Use wide-char API on NT-based
711         Windows. Convert parameters from UTF-8 to wide chars (NT) or
712         system codepage (Win9x) and call the C library _wspawn*() or
713         spawn*() functions respectvely. Add DLL ABI stability versions
714         that take parameters in the system codepage.
715
716         * glib/gspawn-win32-helper.c: On NT-based Windows use the
717         wide-char versions of argv and envp, and use wide-char API to
718         change directory and spawn the program to run. Remove the verbose
719         debugging output, it was too complex to modify for the wide-char
720         features. (Just add temporary debugging printouts if needed, no
721         need to have them permanently in the source.)
722
723         * glib/gspawn.c: Corresponding documentation updates.
724
725         * glib/glib.symbols: Corresponding changes: Mark the ABI stability
726         symbols as PRIVATE, add the new _utf8-suffixed ones.
727
728 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
729
730         * glib/gtypes.h (G_MININT64): Cast the constant to gint64; it is
731         guint64 otherwise and that can produce warnings about comparison
732         between signed and unsigned.
733
734 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
735
736         * glib/gutils.c: Fix the crt_externs.h include.
737
738 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
739
740         * NEWS: Fix spelling of my first name.
741
742 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
743
744         * Bump version
745
746         * === Released 2.8.1 ===
747
748         * NEWS: Updates
749
750 2005-08-20  Hans Breuer  <hans@breuer.org>
751
752         * glib/makefile.msc.in : link with ws2_32.lib
753
754 2005-08-18  Tor Lillqvist  <tml@novell.com>
755
756         * configure.in: Check for <sys/wait.h>
757
758         * glib/gbacktrace.c: Include <sys/wait.h> on if HAVE_SYS_WAIT_H.
759
760 2005-08-18  Ross Burton  <ross@burtonini.com>
761
762         * glib/gstring.c:
763         Optimise single-character insertions.
764         
765         * glib/gutf8.c:
766         Note copied code.
767         
768         * tests/string-test.c:
769         Add tests for new optimisation, and fix a leak.
770
771 2005-08-17  Matthias Clasen  <mclasen@redhat.com>
772
773         * configure.in: Check for crt_externs.h and _NSGetEnviron.
774
775         * glib/gutils.c: On Darwin, include crt-externs.h and
776         define environ using _NSGetEnviron().  (#313731)
777
778 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
779
780         * glib/gutils.c (g_get_any_init): Move the body of the big if...
781         (g_get_any_init_do): ... to this new function.
782         (g_get_any_init): Declare as inline.
783         (g_get_any_init_locked): New inline function, does the locking.
784         Make use of these two throughout the code.
785
786 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
787
788         * glib/gbacktrace.c (g_on_error_stack_trace): Wait for
789         the child process and then simply return. This makes 
790         The "S" option work as documented in g_on_error_query().
791         (#313125, Matthew F. Barnes)
792
793         * glib/gunicode.h: Update the link to Unicode category
794         values.  (#313369, Behnam Esfahbod)
795
796         * glib/gqueue.c (g_queue_find_custom): Clarify docs
797         a little.  (#311727, Tristan van Berkom)
798
799         * glib/abicheck.sh, gobject/abicheck.sh: Make the 
800         check work on ia64 too, where some symbols ended up 
801         in yet another section.
802