Silence compiler warnings.
[platform/upstream/glib.git] / ChangeLog.pre-2-10
1 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
2
3         * glib/gthread.c (g_static_rw_lock_wait, g_static_rw_lock_signal): 
4         * glib/gnode.c (g_node_depth_traverse_level): 
5         * glib/gmem.c (g_allocator_new): 
6         * glib/ghash.c (g_hash_table_unref, g_hash_table_destroy) 
7         (g_hash_table_foreach_remove_or_steal): Silence compiler
8         warnings.
9
10 2005-11-27  Matthias Clasen  <mclasen@redhat.com>
11
12         * glib/gunicollate.c (g_utf8_collate_key_for_filename): 
13         Don't read beyond len.  (#322520, Christian Persch)
14
15 Wed Nov 23 17:34:01 2005  Tim Janik  <timj@imendio.com>
16
17         * glib/gdataset.c: access datalist flags via atomic pointer access
18         functions, instead of acquiring the dataset lock. this is faster and
19         also matches the atomic pointer readouts in gdatalistprivate.h and
20         direct pointer modifications required by gobject.c.
21
22 Wed Nov 23 13:35:31 2005  Tim Janik  <timj@gtk.org>
23
24         * glib/gdataset.c: streamlined initialization code somewhat,
25         removed GData node cache.
26
27 2005-11-22  Matthias Clasen  <mclasen@redhat.com>
28
29         * glib/ghash.c (g_hash_table_ref): 
30         (g_hash_table_unref): Mark these as new API.
31
32         Avoid double locking in g_intern_string (#322133,
33         Benedikt Meurer)
34
35         * glib/gdataset.c (g_quark_from_string_internal): New 
36         internal function which factors out common parts of 
37         g_quark_from[_static]_string.
38         (g_quark_from_string, g_quark_from_static_string):
39         Use g_quark_from_string_internal.
40         (g_intern_string, g_intern_static_string): Use
41         g_quark_from_string_internal, and only take the
42         lock once.
43         (g_quark_new): Don't store the strings shifted by -1
44         in the g_quarks array.
45         (g_quark_to_string): Adapt to the previous change.
46
47 Tue Nov 22 14:04:26 2005  Tim Janik  <timj@imendio.com>
48
49         * glib/ghash.h: 
50         * glib/ghash.c: 
51         g_hash_table_new_full(): create hash tables with a ref count of 1.
52         g_hash_table_ref(): atomically ref_count+=1
53         g_hash_table_unref(): atomically ref_count-=1, destroys hash table
54         when refcount reaches 0.
55         g_hash_table_destroy(): just destroy keys and values, unref by 1.
56         g_hash_table_insert(): 
57         g_hash_table_replace(): assert ref_count>0.
58
59         * glib/gatomic.h: 
60         * glib/gatomic.c: added 'volatile' qualifier to all atomic pointer and
61         integer pointers.
62
63 2005-11-20  Behdad Esfahbod  <behdad@gnome.org>
64
65         * glib/guniprop.c (g_unichar_get_mirror_char): Remove unused
66         variables. (#321984, Andrew Paprocki)
67
68 2005-11-18  Matthias Clasen  <mclasen@redhat.com>
69
70         * configure.in: Bump version
71
72 2005-11-17  Matthias Clasen  <mclasen@redhat.com>
73
74         * === Released 2.9.0 ===
75
76         * glib/glib.symbols: Updates
77
78         * glib/gutf8.c (g_utf8_offset_to_pointer): Add some performance
79         hints to the docs. (Paolo Borelli)
80         
81         * NEWS: Updates
82
83         * glib/gthread.c (g_thread_foreach): Mark as new api.
84
85         * README.in: Updates.
86
87         * glib/glib.symbols: 
88         * glib/gdate.h: 
89         * glib/gdate.c (g_date_set_time_t): 
90         (g_date_set_time_val): Add functions to set a date from
91         a time_t and from a GTimeVal.
92         (g_date_set_time): Deprecate.  (#314067, Roger Leigh)
93         
94         * tests/Makefile.am:
95         * tests/utf8-pointer.c: Unit tests for g_utf8_pointer_to_offset
96         and g_utf8_offset_to_pointer.
97
98         * glib/gutf8.c (g_utf8_pointer_to_offset) 
99         (g_utf8_offset_to_pointer): Handle negative offsets, and use
100         "stutter stepping" for going backwards. (#320638, Larry
101         Ewing)
102
103         * glib/gbacktrace.c:
104         * glib/gdate.c:
105         * glib/gthread.c: const correctness fixes, found
106         by Arjan van de Ven and gcc.
107         
108 2005-11-16  Behdad Esfahbod  <behdad@gnome.org>
109
110         * docs/reference/glib/tmpl/unicode.sgml: Correct typo on mentioning
111         @G_UNICODE_BREAK_UNKNOWN that should be #G_UNICODE_BREAK_UNKNOWN.
112
113 2005-11-09  Behdad Esfahbod  <behdad@gnome.org>
114
115         * glib/guniprop.c: Use bit hacks instead when checking a general
116         category value against multiple values.
117
118         * glib/gutf8.c: Change ISO10646 to Unicode in docs.
119
120 2005-11-10  Simos Xenitellis  <simos@gnome.org>
121
122         * configure.in: Added tt (Tatar) to ALL_LINGUAS.
123
124 2005-11-05  Tor Lillqvist  <tml@novell.com>
125
126         * glib/giowin32.c (g_io_win32_set_flags): Don't call g_warning().
127         (#320688) Instead set error and return failure.
128
129 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
130
131         * glib/gmain.c (g_main_dispatch): Don't call cb_funcs->unref
132         while holding the context lock.  (#320886, Andy Wingo)
133
134 2005-11-07  Billy Biggs <vektor@dumbterm.net>
135
136         * tests/refcount/Makefile.am: Add a missing reference to libglib
137         in the LDADD for this test.
138
139 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
140
141         * glib/gmem.c (g_allocator_new): We need to set n_preallocs to a
142         nonzero value, otherwise GTK+ 2.8 breaks when compiled against
143         GLib 2.9.  (#320755, Luca Ferretti)
144
145 2005-11-04  Matthias Clasen  <mclasen@redhat.com>
146
147         * glib/Makefile.am: Apply a patch from Behdad Esfahbod to 
148         use a faster lookup table for g_unichar_get_mirror_char().
149         * glib/gmirroringtable.h: The new table.
150         * glib/gunichartables.h: Remove bidi_mirroring_table.
151         * glib/gen-unicode-tables.pl: Don't generate the mirroring
152         table.
153         * glib/glib-mirroring-tab/*: Sources for the program
154         which generated gmirroringtable.h.
155
156         * glib/glist.c: Avoid some code duplication.
157
158         * glib/gscanner.h: Include gdataset.h.  (#320322)
159
160         * glib/gdebug.h: add new GDebugFlag for fatal_criticals
161         * glib/gmessages.c: (_g_debug_init): handle G_DEBUG=fatal_criticals,
162         to help find critical warnings in applications.  (#320017,
163         Vincent Untz)
164
165 2005-11-02  Tor Lillqvist  <tml@novell.com>
166
167         * glib/glib.symbols: Remove large amount of trailing whitespace
168         from one line. Remove #ifdef G_UNDEFINED from around
169         g_hash_table_new and g_hash_table_new_full symbols, what was the
170         purpose of that? Add the g_slice functions.
171
172 Tue Nov  1 16:24:20 2005  Tim Janik  <timj@imendio.com>
173
174         * glib/gmem.[hc]: prepared deprecation of GMemChunk and GAllocator.
175         added g_slice_*() API to allocate and cache small bits of memory.
176         an actuall allocator implementation for g_slice_*() is still pending.
177
178         * glib/gthread.[hc]: changes from a patch by Matthias Clasen.
179         changed GRealThread list to use in-structure *next; fields instead
180         of GSList, in order for thread iteration to not depenend on g_slice_*()
181         indirectly.
182         _g_thread_mem_private_get():
183         _g_thread_mem_private_set(): added accessors for private memory,
184         needed because the ordinary GPrivate implementation relies on GArray
185         and GSList and therefore indirectly on working g_slice_*() allocations.
186
187         * glib/gthread.[hc]:
188         g_thread_foreach(): new public API function to loop over all existing threads.
189
190         * glib/gdataset.c:
191         * glib/gstring.c:
192         * glib/gcache.c:
193         * glib/garray.c: 
194         * glib/gqueue.c:
195         * glib/gslist.c:
196         * glib/glist.c:
197         * glib/ghash.c:
198         * glib/gtree.c:
199         * glib/ghook.c:
200         * glib/gmain.c:
201         * glib/gnode.c:
202         removed GAllocator and free list usages and accompanying locks.
203         use g_slice_*() API to allocate and cache small bits of memory.
204
205         * glib/ghook.h: removed GMemChunk field from public API.
206
207         * glib/gslist.h:
208         * glib/glist.h: deprecate allocator API, provide _free1() for consistency.
209
210         * glib/gnode.h: deprecate allocator API.
211
212         * glib/gmain.c: reordered GPollRec fields so g_slice_free_chain() can
213         be used for poll rec lists.
214
215         * glib/grel.c: removed mem chunk usage, and allocated tuples via g_slice_*().
216         g_relation_destroy(): free all tuples from the all_tuples hash table,
217         this effectively maintains the life time track keeping of tuples.
218         g_relation_delete_tuple(): free tuples which are removed from the
219         all_tuples hash table. this fixes a temporary leak that was present
220         in the memchunk code until the destruction of the relation.
221
222 2005-10-29  Matthias Clasen  <mclasen@redhat.com>
223
224         * tests/convert-test.c: Add some tests for conversions between
225         UTF-8, UCS-4 and UTF-16.
226
227         * glib/gutf8.c (g_utf8_to_ucs4, g_utf8_to_utf16): Fix handling
228         of len == -1, noticed by Morten Welinder.
229
230 2005-10-27  Erdal Ronahi  <erdal.ronahi@gmail.com>
231
232         * configure.in: Added ku (Kurdish) to ALL_LINGUAS
233
234 2005-10-26  Matthias Clasen  <mclasen@redhat.com>
235
236         * glib/gutf8.c (g_ucs4_to_utf8): Don't set items_read twice
237         in the error case, and add some documentation.  (#319806, Morten
238         Welinder)
239
240 2005-10-19  Manish Singh  <yosh@gimp.org>
241
242         * configure.in: Use AC_CHECK_FUNCS for _NSGetEnviron, to get the
243         config.h symbol automatically. Fixes bug #313731.
244
245 2005-10-19  Tor Lillqvist  <tml@novell.com>
246
247         * glib/gwin32.c (g_win32_get_package_installation_directory):
248         Return a g_strdup()ed copy of the value stored in the hash table,
249         so that it can be g_free()d without leaving a dangling pointer in
250         the hash table. (#319232)
251
252 2005-10-06  Matthias Clasen  <mclasen@redhat.com>
253
254         * glib/gunicollate.c (g_utf8_collate_key_for_filename): Handle
255         all-zero sequences correctly.  (#317930, Sebastien Bacher)
256
257 2005-10-05  Matthias Clasen  <mclasen@redhat.com>
258
259         * glib/gmarkup.c (g_markup_escape_text): Doc addition
260
261         * Makefile.am: Add Collation tests.
262
263         * tests/collate/*: Inputs and expected outputs for collation tests.
264
265         * tests/run-collate-tests.sh: Script to run collation tests.
266
267         * tests/unicode-collate.c (main): Rework slightly to make
268         it usable in unit tests. Also test g_utf8_collate_key_for_filename().
269
270 2005-10-01  Behdad Esfahbod  <behdad@gnome.org>
271
272         * docs/reference/glib/tmpl/unicode.sgml:
273         * glib/gen-unicode-tables.pl:
274         * glib/gunibreak.h:
275         * glib/gunichartables.h:
276         * glib/gunicode.h:
277         * tests/casefold.txt:
278         * tests/casemap.txt: Updated to Unicode 4.1.  There are five new
279         GUnicodeBreakType types.  That may break some applications, like
280         Pango <= 1.10.
281
282 2005-09-26  Matthias Clasen  <mclasen@redhat.com>
283
284         * glib/gstrfuncs.c (g_ascii_strtoull): Add details to the 
285         docs.  (#314393, Matthew F. Barnes)
286
287         * glib/glib.symbols:
288         * glib/gprintf.h: Remove g_snprintf() and g_vsnprintf(), since
289         they are already declared in glib.h. This doesn't break documented
290         use of gprintf.h, but should probably be pointed out in the 
291         release notes for 2.10. (#314232, Behdad Esfahbod)
292
293 Tue Sep 20 13:16:04 2005  Tim Janik  <timj@imendio.com>
294
295         * glib/gpattern.c (g_pattern_ph_match): applied significant recursion
296         complexity optimization, based on a patch from Matthias Clasen.
297
298         * tests/patterntest.c: more tests, mostly from matthias.
299
300 2005-09-20  Matthias Clasen  <mclasen@redhat.com>
301
302         * glib/gqueue.c (g_queue_insert_sorted): Correct the docs.
303         (#316703, Mark Drago)
304
305 Mon Sep 19 17:23:23 2005  Tim Janik  <timj@imendio.com>
306
307         * glib/gpattern.c: applied a patch from matthias which checks on the
308         upper bound of GPatternSpec length to optimize matches.
309         cosmetic fixups.
310
311         * tests/patterntest.c: added more match cases.
312
313 2005-09-16  Tor Lillqvist  <tml@novell.com>
314
315         * glib/gstrfuncs.c (g_ascii_strcasecmp, g_ascii_strncasecmp): Add
316         warning to doc comment that these functions should not be used on
317         encodings like CP932.
318
319 2005-09-14  Matthias Clasen  <mclasen@redhat.com>
320
321         * tests/keyfile-test.c: Add a test for grup names of length 1.
322
323         * glib/gkeyfile.c (g_key_file_line_is_group): Accept group names
324         of length 1.  (#316309)
325         
326 2005-09-12  Matthias Clasen  <mclasen@redhat.com>
327
328         * glib/gmarkup.c (g_markup_escape_text): Clarify docs.
329
330 2005-09-11  Sebastian Wilhelmi  <seppi@seppi.de>
331
332         * tests/refcount/Makefile.am (INCLUDES): Link the the refcount
333         tests to the system thread library $(G_THREAD_LIBS). Fixes #313744
334         and #314217.
335
336 2005-09-11  Kjartan Maraas  <kmaraas@gnome.org>
337
338         * glib/gmain.c: (g_child_watch_prepare), (g_child_watch_check),
339         (child_watch_helper_thread): Remove some dead code. Closes
340         bug #315278.
341
342 2005-09-07  Tor Lillqvist  <tml@novell.com>
343
344         * glib/Makefile.am: Create also a console version of the
345         gspawn-win32-helper program, gspawn-win32-helper-console.exe.
346         It's otherwise identical to gspawn-win32-helper.exe, except marked
347         as a console application (linked without the -mwindows option).
348         
349         * glib/gspawn-win32.c (do_spawn_directly, do_spawn_with_pipes):
350         Drop the dont_wait parameter. Its truth value correlated 100% with
351         the NULLness of the exit_status parameter anyway, so it's enough
352         to check whether exit_status is NULL. Invert the sense of the
353         dont_return_handle parameter and rename it to do_return_handle, to
354         make the code easier to read by avoiding double negations.
355
356         (g_spawn_sync_utf8, g_spawn_async_with_pipes_utf8): Modify calls
357         to do_spawn_with_pipes() accordingly.
358
359         (do_spawn_with_pipes): If we have a console, use the console
360         version of the helper program, otherwise use the GUI one. This
361         avoids extra console windows opening up in some situations. (In
362         case a console application uses the GUI gspawn-win32-helper.exe to
363         spawn another console application we would get a separate console
364         for the spawned console application).
365
366         * glib-zip.in: Distribute also gspawn-win32-helper-console.exe.
367
368 2005-09-05  Matthias Clasen  <mclasen@redhat.com>
369
370         * glib/gmappedfile.c (g_mapped_file_new): Report an error
371         if the file is too large.  (#315275, Kjartan Maraas)
372
373         * glib/gkeyfile.c (g_key_file_load_from_fd): The return value
374         of read() is signed.  (#315273, Kjartan Maraas)
375         
376 2005-08-31  Tor Lillqvist  <tml@novell.com>
377
378         * glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
379         the EXE and each DLL have their own atexit function chains.
380
381         #define g_atexit as atexit instead. This means it has a
382         better chance of doing what the caller wants. For instance,
383         gtkhtml calls g_atexit() registering a function in gtkhtml
384         itself. This caused a crash when g_atexit() was implemented as a
385         function in the GLib DLL. The gtkhtml DLL was already unloaded by
386         the time the GLib DLL got unloaded.
387
388         * glib/gutils.c: #undef the #define mentioned above, to also get a
389         real g_atexit() into the DLL for backward compatibility. Document
390         the Windows behaviour of g_atexit(), and document the varying ways
391         atexit() can behave in the context of dynamically loaded modules
392         on Unix.
393
394 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
395
396         * glib/glib.symbols: 
397         * glib/gquark.h: 
398         * glib/gdataset.c: Add string interning functions.
399
400 2005-08-28  Matthias Clasen  <mclasen@redhat.com>
401
402         * glib/giochannel.c: Unify some near-duplicate strings. (#314654,
403         Clytie Siddall)
404         
405 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
406
407         * configure.in: Bump version to 2.9.0
408
409 2005-08-25  Tor Lillqvist  <tml@novell.com>
410
411         Make also the g_spawn*() functions take parameters in the GLib
412         file name encoding, i.e. UTF-8, on Windows. Has no impact on Unix
413         API or ABI. Like the other GLib API that was earlier changed to
414         use UTF-8 on Windows, the names of the functions that take UTF-8
415         have _utf8 suffixes added by using preprocessor macros in the
416         header file. The old names are kept for functions with the old
417         behaviour, taking parameters in the system codepage, for DLL ABI
418         stability.
419         
420         * glib/gspawn.h: On Win32 add the suffix _utf8 to the names of the
421         g_spawn*() functions.
422         
423         * glib/gspawn-win32.c: Use wide-char API on NT-based
424         Windows. Convert parameters from UTF-8 to wide chars (NT) or
425         system codepage (Win9x) and call the C library _wspawn*() or
426         spawn*() functions respectvely. Add DLL ABI stability versions
427         that take parameters in the system codepage.
428
429         * glib/gspawn-win32-helper.c: On NT-based Windows use the
430         wide-char versions of argv and envp, and use wide-char API to
431         change directory and spawn the program to run. Remove the verbose
432         debugging output, it was too complex to modify for the wide-char
433         features. (Just add temporary debugging printouts if needed, no
434         need to have them permanently in the source.)
435
436         * glib/gspawn.c: Corresponding documentation updates.
437
438         * glib/glib.symbols: Corresponding changes: Mark the ABI stability
439         symbols as PRIVATE, add the new _utf8-suffixed ones.
440
441 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
442
443         * glib/gtypes.h (G_MININT64): Cast the constant to gint64; it is
444         guint64 otherwise and that can produce warnings about comparison
445         between signed and unsigned.
446
447 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
448
449         * glib/gutils.c: Fix the crt_externs.h include.
450
451 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
452
453         * NEWS: Fix spelling of my first name.
454
455 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
456
457         * Bump version
458
459         * === Released 2.8.1 ===
460
461         * NEWS: Updates
462
463 2005-08-20  Hans Breuer  <hans@breuer.org>
464
465         * glib/makefile.msc.in : link with ws2_32.lib
466
467 2005-08-18  Tor Lillqvist  <tml@novell.com>
468
469         * configure.in: Check for <sys/wait.h>
470
471         * glib/gbacktrace.c: Include <sys/wait.h> on if HAVE_SYS_WAIT_H.
472
473 2005-08-18  Ross Burton  <ross@burtonini.com>
474
475         * glib/gstring.c:
476         Optimise single-character insertions.
477         
478         * glib/gutf8.c:
479         Note copied code.
480         
481         * tests/string-test.c:
482         Add tests for new optimisation, and fix a leak.
483
484 2005-08-17  Matthias Clasen  <mclasen@redhat.com>
485
486         * configure.in: Check for crt_externs.h and _NSGetEnviron.
487
488         * glib/gutils.c: On Darwin, include crt-externs.h and
489         define environ using _NSGetEnviron().  (#313731)
490
491 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
492
493         * glib/gutils.c (g_get_any_init): Move the body of the big if...
494         (g_get_any_init_do): ... to this new function.
495         (g_get_any_init): Declare as inline.
496         (g_get_any_init_locked): New inline function, does the locking.
497         Make use of these two throughout the code.
498
499 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
500
501         * glib/gbacktrace.c (g_on_error_stack_trace): Wait for
502         the child process and then simply return. This makes 
503         The "S" option work as documented in g_on_error_query().
504         (#313125, Matthew F. Barnes)
505
506         * glib/gunicode.h: Update the link to Unicode category
507         values.  (#313369, Behnam Esfahbod)
508
509         * glib/gqueue.c (g_queue_find_custom): Clarify docs
510         a little.  (#311727, Tristan van Berkom)
511
512         * glib/abicheck.sh, gobject/abicheck.sh: Make the 
513         check work on ia64 too, where some symbols ended up 
514         in yet another section.
515