platform/upstream/glib.git
23 years agoMake some changes to the way that GMainContext works:
Owen Taylor [Sat, 30 Jun 2001 19:56:47 +0000 (19:56 +0000)]
Make some changes to the way that GMainContext works:

Sat Jun 30 15:49:10 2001  Owen Taylor  <otaylor@redhat.com>

* glib/gmain.[ch]: (Mostly patch from Sebastian Wilhemi)
Make some changes to the way that GMainContext works:

 - a GMainContext is no longer associated with a single
   thread, but any thread can acquire ownership
   of thread and iterate.

 - There is a facility g_main_context_wait() for
   non-owner-threads to wait either for ownership
   or for a condition to be broadcast.

 - For efficiency, GMainLoop just piggybacks of
   of the loops mutex / condition instead of
   having a separate mutex/condition for each
   GMainLoop.

* glib/gthread.[ch]: Remove hacks to store the thread's
GMainContext in the GThread structures, since we
no longer have the GMainContext <=> GThread correspondence.

        * glib/gmain.[ch]: Make g_main_context_wakeup() public
so someone could completely duplicate GMainLoop
with the public API.

* tests/mainloop-test: Fix up to the new API. Decidedly
doesn't work at the moment, but that may be the IO
channel changes, or preexisting locking problems.

23 years agoTry compiling before committing, why don't you? Simple fixes for my stupid
Owen Taylor [Sat, 30 Jun 2001 17:19:20 +0000 (17:19 +0000)]
Try compiling before committing, why don't you? Simple fixes for my stupid

Sat Jun 30 13:18:28 2001  Owen Taylor  <otaylor@redhat.com>

* glib/gstrfuncs.c glib/gstring.h: Try compiling
before committing, why don't you? Simple fixes
for my stupid typos.

23 years agog_signal_newc() => g_signal_new().
Owen Taylor [Sat, 30 Jun 2001 17:17:41 +0000 (17:17 +0000)]
g_signal_newc() => g_signal_new().

Sat Jun 30 13:17:12 2001  Owen Taylor  <otaylor@redhat.com>

* testgruntime.c (test_object_class_init)
          gobject.c (g_object_do_class_init):
          g_signal_newc() => g_signal_new().

23 years agoPatch from Darin Adler (#54166)
Owen Taylor [Sat, 30 Jun 2001 16:54:33 +0000 (16:54 +0000)]
Patch from Darin Adler (#54166)

Sat Jun 30 12:49:26 2001  Owen Taylor  <otaylor@redhat.com>

        Patch from Darin Adler (#54166)

* glib/gstrfuncs.[ch]: Add ascii-only, locale-insensitive
g_ascii_to[lower/upper], g_ascii_str[down/up],
g_ascii_is[upper/lower] and deprecate the locale-affected
versions which break for UTF-8, etc. Make
g_ascii_strup/strdown duplicating,
not in-place for consistency with UTF-8 functions.

* glib/gstring.[ch]: Add ascii-only, locale-insensitive
g_string_ascii_[down/up], and deprecate the locale-affected
versions which break for UTF-8, etc.

* glib/gutils.c glib/gwin32.c test/testglib.c: Use
the g_ascii_* functions where appropriate.

23 years ago Jun 29 13:36:39 2001 Owen Taylor <otaylor@redhat.com>
Owen Taylor [Sat, 30 Jun 2001 15:22:13 +0000 (15:22 +0000)]
 Jun 29 13:36:39 2001  Owen Taylor  <otaylor@redhat.com>

        * glib/gstring.[ch] (g_string_set_size): Add function to
        allow setting the length of a string greater than the
        current length (for buffering usage)

        * glib/gstring.[ch]: Expose string->allocated_len, since
        that is useful when using GString simply as a buffer.
        (Renamed from string->alloc)

        * glib/giochannel.[ch] glib/giounix.c glib/giowin32.c:
        Major patch from Hidetoshi Tajima and Ron Steinke
        reworking GIOChannel to have:

         - Buffering
         - Sane and useful error reporting
         - Streaming encoding conversion with iconv
         - Convenience functions to read by lines or
           an entire file.

        Also fix remaining 64 bit cleanliness issues.

        * tests/iochannel-test.c tests/Makefile.am: Test case
        for IO channel streaming conversion. Still needs
        some fixing up.

23 years agoRemove debug flag argument to g_type_init() and add
Owen Taylor [Fri, 29 Jun 2001 02:50:46 +0000 (02:50 +0000)]
Remove debug flag argument to g_type_init() and add

Thu Jun 28 22:49:40 2001  Owen Taylor  <otaylor@redhat.com>

* gtype.[ch] gobject-query.c testgruntime.c: Remove
debug flag argument to g_type_init() and add
g_type_init_with_debug_flags().

23 years agoBuffers Files Tools Edit Search Mule Help Thu...
Owen Taylor [Thu, 28 Jun 2001 21:45:02 +0000 (21:45 +0000)]
Buffers Files Tools Edit Search Mule Help                                       Thu Jun 28 17:43:29 2001  Owen Taylor  <otaylor@redhat.com>

        * glib/tmpl/memory.sgml glib/tmpl/macros_misc.sgml: Add
notes about inclusion of string.h to docs on g_memmove,
        G_VA_COPY. (#54411)

23 years agoup version number to 1.3.7, interface age 0, binary age 0.
Tim Janik [Thu, 28 Jun 2001 17:05:12 +0000 (17:05 +0000)]
up version number to 1.3.7, interface age 0, binary age 0.

Thu Jun 28 16:57:44 2001  Tim Janik  <timj@gtk.org>

        * configure.in (GLIB_MICRO_VERSION): up version number to 1.3.7,
        interface age 0, binary age 0.

Thu Jun 28 16:42:49 2001  Tim Janik  <timj@gtk.org>

        * gsignal.c (g_signal_lookup):
        (g_signal_list_ids): give elaborate warnings about invalid types,
        non-instantiatable types and unloaded types that we can't operate on.

        * gparam.[hc]: g_param_spec_pool_belongings() ->
        g_param_spec_pool_list_owned().

        * gsignal.[hc]: renamed:
        g_signal_newc -> g_signal_new
        g_signal_disconnect_by_func -> g_signal_handlers_disconnect_by_func
        g_signal_block_by_func -> g_signal_handlers_block_by_func
        g_signal_unblock_by_func -> g_signal_handlers_unblock_by_func
        added GConnectType to simplify (..gboolean swapped, gboolean after)
        args.

        * gobject.[hc]: changed prototypes accordingly.

23 years agoFix a typo.
Kjartan Maraas [Wed, 27 Jun 2001 19:18:07 +0000 (19:18 +0000)]
Fix a typo.

2001-06-27  Kjartan Maraas  <kmaraas@gnome.org>

* glib/gmarkup.c: Fix a typo.

23 years agoCompleted Norwegian translation. Adjusted to fit the move of the .c files.
Kjartan Maraas [Wed, 27 Jun 2001 19:17:50 +0000 (19:17 +0000)]
Completed Norwegian translation. Adjusted to fit the move of the .c files.

2001-06-27  Kjartan Maraas  <kmaraas@gnome.org>

* no.po: Completed Norwegian translation.
* POTFILES.in: Adjusted to fit the move of the .c files.

23 years agoRemoved glib-config-2.0, as we have pkg-config now.
Sebastian Wilhelmi [Wed, 27 Jun 2001 14:38:08 +0000 (14:38 +0000)]
Removed glib-config-2.0, as we have pkg-config now.

2001-06-27  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* Makefile.am, configure.in: Removed glib-config-2.0, as we have
pkg-config now.

* glib/Makefile.am: Added -I$(top_srcdir) for builddir != srcdir.

* Makefile.am: Removed gen-unicode-tables.pl from EXTRA_DIST.

23 years agoFix problem with glibconfig.h
Owen Taylor [Tue, 26 Jun 2001 16:28:50 +0000 (16:28 +0000)]
Fix problem with glibconfig.h

Tue Jun 26 12:28:20 2001  Owen Taylor  <otaylor@redhat.com>

        * glib/Makefile.am: Fix problem with glibconfig.h

23 years agoMove glib library into a subdirectory, make all GLib include files include
Owen Taylor [Tue, 26 Jun 2001 16:01:21 +0000 (16:01 +0000)]
Move glib library into a subdirectory, make all GLib include files include

Tue Jun 26 11:43:46 2001  Owen Taylor  <otaylor@redhat.com>

* configure.in Makefile.am *.[ch] glib/*.[ch] glib/Makefile.am:
Move glib library into a subdirectory, make all GLib include
files include as <glib/glist.h>

* tests/testglib.c tests/testgdate.c tests/testgdateparser.c
  tests/timeloop.c tests/timeloop-basic.c: Move all tests into
the tests/ subdirectory.

23 years agoCorrected.
Sebastian Wilhelmi [Tue, 26 Jun 2001 10:28:48 +0000 (10:28 +0000)]
Corrected.

2001-06-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/threads.sgml (example): Corrected.

23 years agouse G_BREAKPOINT() instead of raise(5).
Tim Janik [Sat, 23 Jun 2001 20:14:48 +0000 (20:14 +0000)]
use G_BREAKPOINT() instead of raise(5).

Sat Jun 23 17:34:38 2001  Tim Janik  <timj@gtk.org>

        * gmessages.c (g_logv): use G_BREAKPOINT() instead of raise(5).

23 years agoChanges for 64-bit cleanliness, loosely based on patch from Mark Murnane.
Owen Taylor [Sat, 23 Jun 2001 13:55:09 +0000 (13:55 +0000)]
Changes for 64-bit cleanliness, loosely based on patch from Mark Murnane.

Wed Jun 20 12:00:54 2001  Owen Taylor  <otaylor@redhat.com>

        Changes for 64-bit cleanliness, loosely based on patch
from Mark Murnane.

* gconvert.c (g_convert/g_convert_with_fallback): Remove
workarounds for since-fixed GNU libc bugs. Minor
doc fix.

* gconvert.[ch]: Change gint to gsize/gssize as
appropriate.

* gconvert.c (g_locale/filename_to/from_utf8): Fix incorrect
computation of bytes_read / bytes_written.

* gfileutils.[ch] (g_file_get_contents): Make length
out parameter 'gsize *len'.

* ghook.c (g_hook_compare_ids): Don't compare a
and b as 'a - b'.

* gmacros.h (GSIZE_TO_POINTER): Add GPOINTER_TO_SIZE,
GSIZE_TO_POINTER.

* gmain.c (g_timeout_prepare): Rewrite to avoid
overflows. (Fixes bug when system clock skews
backwards more than 24 days.)

* gmarkup.[ch]: Make lengths passed to callbacks
gsize, length for g_markup_parse-context_parse(),
g_markup_escape_text() gssize.

* gmessages.[ch] (g_printf_string_upper_bound): Change
return value to gsize.

* gmessages.c (printf_string_upper_bound): Remove
a ridiculous use of 'inline' on a 300 line function.

* gstring.[ch]: Represent size of string as a gsize,
not gint. Make parameters to functions take gsize,
or gssize where -1 is allowed.

* gstring.c (g_string_erase): Make
g_string_erase (string, pos, -1) a synonym for
g_string_truncate for consistency with other G*
APIs.

* gstrfuncs.[ch]: Make all functions taking a string
length, take a gsize, or gssize if -1 is allowed.
(g_strstr_len, g_strrstr_len). Also fix some boundary
conditions in g_str[r]str[_len].

* gutf8.c tests/unicode-encoding.c: Make parameters that
are byte lengths gsize, gssize as appropriate. Make
character offsets, other counts, glong.

* gasyncqueue.c gcompletion.c
          timeloop.c timeloop-basic.c gutils.c gspawn.c.
Small 64 bit cleanliness fixups.

* glist.c (g_list_sort2, g_list_sort_real): Fix functions
that should have been static.

* gdate.c (g_date_fill_parse_tokens): Fix extra
declaration that was shadowing another.

* tests/module-test.c: Include string.h

Mon Jun 18 15:43:29 2001  Owen Taylor  <otaylor@redhat.com>

* gutf8.c (g_get_charset): Make argument
G_CONST_RETURN char **.

23 years ago*giowin32.c: Debug and partial rewrite of async socket code
Andy Lanoix [Fri, 22 Jun 2001 15:44:44 +0000 (15:44 +0000)]
*giowin32.c: Debug and partial rewrite of async socket code
on windows, which fixes major MT issues. Some test code kindly
provided by wroberts1@home.com.

23 years agoupdated externals
Hans Breuer [Fri, 22 Jun 2001 14:10:33 +0000 (14:10 +0000)]
updated externals

2001-06-22  Hans Breuer  <hans@breuer.org>

* gobject.def : updated externals

* gobjectnotifyqueue.c : include <string.h> for memset ()

23 years agos/long/int/ for default_value in enum and flags pspecs.
Tim Janik [Thu, 21 Jun 2001 00:41:55 +0000 (00:41 +0000)]
s/long/int/ for default_value in enum and flags pspecs.

Thu Jun 21 02:43:10 2001  Tim Janik  <timj@gtk.org>

        * gparamspecs.h: s/long/int/ for default_value in enum and flags
        pspecs.

23 years agoadded debugging variants g_type_name_from_class(),
Tim Janik [Wed, 20 Jun 2001 02:32:10 +0000 (02:32 +0000)]
added debugging variants g_type_name_from_class(),

Wed Jun 20 03:59:42 2001  Tim Janik  <timj@gtk.org>

        * gtype.[hc]: added debugging variants g_type_name_from_class(),
        g_type_name_from_instance().

23 years agoremove left-over usages of an anonymous GBoxed typedef.
Tim Janik [Tue, 19 Jun 2001 12:13:22 +0000 (12:13 +0000)]
remove left-over usages of an anonymous GBoxed typedef.

Mon Jun 11 17:07:06 2001  Tim Janik  <timj@gtk.org>

        * gboxed.[hc]: remove left-over usages of an anonymous GBoxed typedef.

        * gobjectnotifyqueue.c: moved property notify queue implementation
        bits into this function.

        * gparam.[hc]: added g_param_spec_pool_belongings(), completed
        g_param_spec_pool_list(). added GParameter for _setv() functions.

        * gobject.[hc]: use gobjectnotifyqueue.h implementation now.
        got rid of properties_changed signal.
        new functions g_object_newv(), g_object_class_list_properties().
        removed "properties_changed" signal.

        * gtype.[hc]: added g_type_depth() to figure number of parent
        types + 1 for a type.

        * gsignal.h: add g_signal_connect() (as per owen's request) and
        g_signal_connect_swapped().

23 years agoFix a use of strcat that wasn't replaced with g_stpcpy in the original
Owen Taylor [Fri, 15 Jun 2001 18:28:06 +0000 (18:28 +0000)]
Fix a use of strcat that wasn't replaced with g_stpcpy in the original

Thu Jun 14 14:09:46 2001  Owen Taylor  <otaylor@redhat.com>

* gstrfuncs.c (g_strconcat): Fix a use of strcat that
wasn't replaced with g_stpcpy in the original
stpcpy-for-efficiency patch.

23 years agoversion to 1.3.6 GTK_ALL_1_3_6
Havoc Pennington [Thu, 14 Jun 2001 16:34:20 +0000 (16:34 +0000)]
version to 1.3.6

2001-06-11  Havoc Pennington  <hp@redhat.com>

* configure.in: version to 1.3.6

23 years agolink to ./libgobject-1.3.la since an installed libgobject was somehow GLIB_1_3_6
Havoc Pennington [Wed, 13 Jun 2001 16:57:53 +0000 (16:57 +0000)]
link to ./libgobject-1.3.la since an installed libgobject was somehow

2001-06-13  Havoc Pennington  <hp@redhat.com>

* Makefile.am (progs_LDADD): link to ./libgobject-1.3.la
since an installed libgobject was somehow being found; think
it's a libtool bug, but this workaround should do for now.

23 years agodon't ignore errors from missing index.sgml
Havoc Pennington [Tue, 12 Jun 2001 23:05:47 +0000 (23:05 +0000)]
don't ignore errors from missing index.sgml

2001-06-12  Havoc Pennington  <hp@redhat.com>

* docs/Makefile.am (dist-hook): don't ignore errors from missing
index.sgml

23 years agoupdated
Havoc Pennington [Tue, 12 Jun 2001 20:05:43 +0000 (20:05 +0000)]
updated

2001-06-11  Havoc Pennington  <hp@redhat.com>

* NEWS: updated

* configure.in (GLIB_MICRO_VERSION): increment version to 1.3.6

2001-06-12  Havoc Pennington  <hp@redhat.com>

* Makefile.am (glib-mkenums): don't put $(srcdir)/glib-mkenums in
bin_SCRIPTS, that breaks make install. Instead put 'glib-mkenums'
in bin_SCRIPTS and cp it into builddir

23 years ago.cvsignore updates
Sebastian Wilhelmi [Mon, 11 Jun 2001 10:09:09 +0000 (10:09 +0000)]
.cvsignore updates

.cvsignore updates

23 years agoAdded new functions g_strstr_len, g_strrstr and g_strrstr_len
Alex Larsson [Fri, 8 Jun 2001 23:14:03 +0000 (23:14 +0000)]
Added new functions g_strstr_len, g_strrstr and g_strrstr_len

2001-06-08  Alex Larsson  <alexl@redhat.com>

* gstrfuncs.[ch]:
Added new functions g_strstr_len, g_strrstr and g_strrstr_len

* tests/strfunc-test.c:
Add some tests for the new functions.

* gunicode.h:
* gutf8.c:
Add length argument to g_utf8_strchr and g_utf8_strrchr.

23 years agosupport G_SPAWN_FILE_AND_ARGV_ZERO specifying that the vector passed in to
Havoc Pennington [Fri, 8 Jun 2001 19:41:51 +0000 (19:41 +0000)]
support G_SPAWN_FILE_AND_ARGV_ZERO specifying that the vector passed in to

2001-06-08  Havoc Pennington  <hp@redhat.com>

* gspawn.c: support G_SPAWN_FILE_AND_ARGV_ZERO specifying that
the vector passed in to g_spawn_* contains a filename to
execute in argv[0] then the actual argv begins at argv + 1.
Kind of a lame hack, but this isn't something you commonly want
to do, and avoids adding more function arguments.

23 years agoAdded Azeri file
Pablo Saratxaga [Fri, 8 Jun 2001 12:48:45 +0000 (12:48 +0000)]
Added Azeri file

23 years agoRemove docs/glib-config.1.in.
Sebastian Wilhelmi [Fri, 8 Jun 2001 12:19:59 +0000 (12:19 +0000)]
Remove docs/glib-config.1.in.

2001-06-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* docs/Makefile.am, configure.in: Remove docs/glib-config.1.in.

23 years agoAdd @G_THREAD_CFLAGS@.
Sebastian Wilhelmi [Fri, 8 Jun 2001 11:53:48 +0000 (11:53 +0000)]
Add @G_THREAD_CFLAGS@.

2001-06-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gthread-2.0-uninstalled.pc.in (Cflags): Add @G_THREAD_CFLAGS@.

23 years agosubst GLIB_GENMARSHAL, GOBJECT_QUERY, GLIB_MKENUMS variables
Havoc Pennington [Thu, 7 Jun 2001 16:39:54 +0000 (16:39 +0000)]
subst GLIB_GENMARSHAL, GOBJECT_QUERY, GLIB_MKENUMS variables

2001-06-07  Havoc Pennington  <hp@redhat.com>

* m4macros/glib-2.0.m4: subst GLIB_GENMARSHAL, GOBJECT_QUERY,
GLIB_MKENUMS variables

* gmodule-2.0.pc.in: add gmodule_supported variable

* glib-2.0.pc.in: add glib_genmarshal, gobject_query,
glib_mkenums variables

* configure.in: put G_MODULE_SUPPORTED value into
.pc files

* autogen.sh: support AUTOGEN_SUBDIR_MODE

* Makefile.am: add -uninstalled.pc.in to EXTRA_DIST

2001-06-07  Havoc Pennington  <hp@redhat.com>

* pango/Makefile.am: add libpango.la to _DEPENDENCIES for the
other libs

* configure.in: use AM_PATH_GLIB_2_0

* autogen.sh: support AUTOGEN_SUBDIR_MODE

* Makefile.am: dist the .pc.in files

2001-06-07  Havoc Pennington  <hp@redhat.com>

* atk/Makefile.am: use @GLIB_GENMARSHAL@ so we can use uninstalled
glib-genmarshal

* configure.in: rearrange the library checks to support
uninstalled linking

* autogen.sh: add support for AUTOGEN_SUBDIR_MODE

* atk-uninstalled.pc.in: new file, allows linking to uninstalled
ATK in giant GTK tarball

2001-06-07  Havoc Pennington  <hp@redhat.com>

* tests/Makefile.am: add missing -I flag

* gtk/Makefile.am: use @GLIB_MKENUMS@, @GLIB_GENMARSHAL@, etc.

* configure.in: use pkg-config to see if GModule is
supported; fix to properly turn on included loaders
when GModule isn't supported; don't use AC_CHECK_LIB
when libs are not installed yet

* autogen.sh: add support for AUTOGEN_SUBDIR_MODE

* Makefile.am (SUBDIRS): add m4macros subdir

* gtk/Makefile.am: $(srcdir)/foo targets must be $(srcdir)/foo in
dependencies also.

23 years agoLook for nanosleep function.
Sebastian Wilhelmi [Thu, 7 Jun 2001 13:46:14 +0000 (13:46 +0000)]
Look for nanosleep function.

2001-06-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: Look for nanosleep function.

* gtimer.c: Use nanosleep for g_usleep, when found.

* gtimer.c, gtimer.h: Add g_time_val_add function. Closes #54271.

* gasyncqueue.c: Documentation updates.

* gthreadpool.c: Use g_time_val_add now that we have it.

* glib/glib-sections.txt, glib/tmpl/date.sgml: Add g_time_val_add.

* glib/tmpl/threads.sgml: Updated.

23 years agoUse g_win32_error_message to beautify error messages.
Sebastian Wilhelmi [Thu, 7 Jun 2001 10:34:22 +0000 (10:34 +0000)]
Use g_win32_error_message to beautify error messages.

2001-06-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gthread-win32.c: Use g_win32_error_message to beautify error
messages.

23 years agoChanged to take a const argument, and then to cast out const.
Jon Trowbridge [Tue, 5 Jun 2001 20:59:02 +0000 (20:59 +0000)]
Changed to take a const argument, and then to cast out const.

2001-06-01  Jon Trowbridge  <trow@gnu.org>

       * gdate.c (g_date_update_julian): Changed to take a const
       argument, and then to cast out const.
       (g_date_update_dmy): Changed to take a const argument, and then
       cast out const.
       (g_date_get_weekday): Changed argument to be const.
       (g_date_get_month): Changed argument to be const.
       (g_date_get_year): Changed argument to be const.
       (g_date_get_day): Changed argument to be const.
       (g_date_get_julian): Changed argument to be const.
       (g_date_get_day_of_year): Changed argument to be const.
       (g_date_get_monday_week_of_year): Changed argument to be const.
       (g_date_get_sunday_week_of_year): Changed argument to be const.
       (g_date_compare): Changed arguments to be const.
       (g_date_to_struct_tm): Changed GDate argument to be const.
       (g_date_strftime): Changed GDate argument to be const.
       (g_date_clamp): Added.  The equivalent of the CLAMP macro for
       GDates.
       (g_date_order): Added.  Ensure that the first GDate argument
       preceeds the second, swapping them if necessary.
       (g_date_days_between): Added.  Computes the (signed) number of days
       between two dates.

23 years agoto match g_strcasecmp, check if it is lower/upper before converting to
Owen Taylor [Mon, 4 Jun 2001 20:06:14 +0000 (20:06 +0000)]
to match g_strcasecmp, check if it is lower/upper before converting to

Mon Jun  4 16:02:57 2001  Owen Taylor  <otaylor@redhat.com>

* gstrfuncs.c (g_strup/strdown): to match g_strcasecmp,
check if it is lower/upper before converting to upper/lower
[ not required by ISO... ] (#55682, Jon Trowbridge)

23 years agoMake a bit more standalone by adding include of gerror.h. #54543.
Owen Taylor [Mon, 4 Jun 2001 20:00:26 +0000 (20:00 +0000)]
Make a bit more standalone by adding include of gerror.h. #54543.

Mon Jun  4 15:59:15 2001  Owen Taylor  <otaylor@redhat.com>

* gunicode.h: Make a bit more standalone by adding include
of gerror.h. #54543.

* gunicode.h: Change size_t to g_size. (Ugh)

23 years agoFix mispelling in help output. (#53952, Skip Montanaro)
Owen Taylor [Thu, 31 May 2001 21:57:35 +0000 (21:57 +0000)]
Fix mispelling in help output. (#53952, Skip Montanaro)

Thu May 31 17:56:47 2001  Owen Taylor  <otaylor@redhat.com>

* gobject-query.c: Fix mispelling in help output.
(#53952, Skip Montanaro)

23 years agoFix to stupid bug in g_random_boolean, also both functions now return 1 or
Sebastian Wilhelmi [Thu, 31 May 2001 08:12:35 +0000 (08:12 +0000)]
Fix to stupid bug in g_random_boolean, also both functions now return 1 or

2001-05-31  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* grand.h (g_random_boolean, g_rand_boolean): Fix to stupid bug in
g_random_boolean, also both functions now return 1 or 0 instead of
1<<15 or 0.

23 years agoRemove G_HAVE_ISO_CXX_VARARGS and G_HAVE_ISO_C_VARARGS and define
Sebastian Wilhelmi [Thu, 31 May 2001 08:10:17 +0000 (08:10 +0000)]
Remove G_HAVE_ISO_CXX_VARARGS and G_HAVE_ISO_C_VARARGS and define

2001-05-31  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: Remove G_HAVE_ISO_CXX_VARARGS and
G_HAVE_ISO_C_VARARGS and define G_HAVE_ISO_VARARGS directly
guarded by #if(n)def __cplusplus.

23 years agoAdd @G_THREAD_CFLAGS@ to Cflags.
Sebastian Wilhelmi [Wed, 30 May 2001 11:12:12 +0000 (11:12 +0000)]
Add @G_THREAD_CFLAGS@ to Cflags.

2001-05-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gthread-2.0.pc.in: Add @G_THREAD_CFLAGS@ to Cflags.

23 years agoFix GNU sedism (#55430)
Owen Taylor [Tue, 29 May 2001 22:19:46 +0000 (22:19 +0000)]
Fix GNU sedism (#55430)

Tue May 29 18:17:11 2001  Owen Taylor  <otaylor@redhat.com>

* autogen.sh (have_libtool): Fix GNU sedism (#55430)

23 years agoAdd test case for the g_qsort_with_data func. It works. This fixes bug
Sebastian Wilhelmi [Tue, 29 May 2001 14:55:39 +0000 (14:55 +0000)]
Add test case for the g_qsort_with_data func. It works. This fixes bug

2001-05-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* tests/Makefile.am, tests/qsort-test.c: Add test case for the
g_qsort_with_data func. It works. This fixes bug #52605.

23 years agoNow that we check for a C++ compiler in configure.in anyway, I added a
Sebastian Wilhelmi [Tue, 29 May 2001 14:17:23 +0000 (14:17 +0000)]
Now that we check for a C++ compiler in configure.in anyway, I added a

2001-05-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* tests/Makefile.am, tests/cxx-test.C: Now that we check for a C++
compiler in configure.in anyway, I added a test, that the GLib
headers can be inclued into a C++ program. This fixes bug #52605.

23 years agoDo not g_strdup, as promised in the function name.
Sebastian Wilhelmi [Tue, 29 May 2001 13:48:18 +0000 (13:48 +0000)]
Do not g_strdup, as promised in the function name.

2001-05-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gmodule.c (g_module_set_error_unduped): Do not g_strdup, as
promised in the function name.

23 years agoDon't bail out, if no C++ compiler is found. Define G_HAVE_ISO_VARARGS
Sebastian Wilhelmi [Tue, 29 May 2001 13:47:05 +0000 (13:47 +0000)]
Don't bail out, if no C++ compiler is found. Define G_HAVE_ISO_VARARGS

2001-05-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: Don't bail out, if no C++ compiler is
found. Define G_HAVE_ISO_VARARGS only if appropriate.

* gmessages.h: Thus we can revert the previous patch.

23 years ago"#ifdef G_HAVE_ISO_VARARGS" will always succeed even when we don't have
James Henstridge [Tue, 29 May 2001 11:12:42 +0000 (11:12 +0000)]
"#ifdef G_HAVE_ISO_VARARGS" will always succeed even when we don't have

2001-05-29  James Henstridge  <james@daa.com.au>

        * gmessages.h: "#ifdef G_HAVE_ISO_VARARGS" will always succeed
        even when we don't have ISO vararg support.  Changed to
        "#if G_HAVE_ISO_VARARGS".

23 years agoerk, strconcat needs NULL as last arg. make sure we pass module name with
Tim Janik [Tue, 29 May 2001 11:05:53 +0000 (11:05 +0000)]
erk, strconcat needs NULL as last arg. make sure we pass module name with

Tue May 29 12:57:51 2001  Tim Janik  <timj@gtk.org>

        * gmodule.c (g_module_symbol): erk, strconcat needs NULL as last arg.
        make sure we pass module name with suffix into backend open.

23 years agoas a last resort, if we can't access() the module, leave it up to the
Tim Janik [Mon, 28 May 2001 18:23:31 +0000 (18:23 +0000)]
as a last resort, if we can't access() the module, leave it up to the

Mon May 28 20:19:25 2001  Tim Janik  <timj@gtk.org>

        * gmodule.c (g_module_open): as a last resort, if we can't access()
        the module, leave it up to the platform backends to find it.
        (fixes implicit search patch loading i broke with my last
        commit, spotted by Padraig O'Briain).

23 years agoCheck for __VARARGS__ separately for C and C++.
Owen Taylor [Mon, 28 May 2001 15:41:24 +0000 (15:41 +0000)]
Check for __VARARGS__ separately for C and C++.

Mon May 28 11:40:34 2001  Owen Taylor  <otaylor@redhat.com>

* configure.in: Check for __VARARGS__ separately for C and C++.

23 years agoFix typo.
Sebastian Wilhelmi [Mon, 28 May 2001 11:16:33 +0000 (11:16 +0000)]
Fix typo.

2001-05-28  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: Fix typo.

* gobject/Makefile.am (EXTRA_DIST): Really distribute
        glib-mkenums, now that bin_SCRIPTS doesn't seem to care about
        doing so anymore.

23 years agofixed bad faux-pass, forgot to release signal lock when restarting
Tim Janik [Mon, 28 May 2001 04:57:07 +0000 (04:57 +0000)]
fixed bad faux-pass, forgot to release signal lock when restarting

Mon May 28 06:51:24 2001  Tim Janik  <timj@gtk.org>

        * gsignal.c (signal_emit_unlocked_R): fixed bad faux-pass, forgot
        to release signal lock when restarting emissions.

23 years agounlock context when bailing out with a warning. (g_main_context_check):
Tim Janik [Sun, 27 May 2001 18:28:58 +0000 (18:28 +0000)]
unlock context when bailing out with a warning. (g_main_context_check):

Sun May 27 05:09:18 2001  Tim Janik  <timj@gtk.org>

        * gmain.c (g_main_context_prepare): unlock context when bailing
        out with a warning.
        (g_main_context_check): same here.

        * gmain.c (g_main_context_check): before returning due to
        changed pollfds, unlock context.

Sun May 27 04:52:28 2001  Tim Janik  <timj@gtk.org>

        * gsignal.[hc] (g_signal_stop_emission_by_name): added variant
        to stop signal emissions through a detailed_signal string.

        * gsignal.c (signal_emit_R) (g_signal_emit_valist): account for
        the fact that g_value_* functions may cause signal emissons by
        unlocking the global signal system lock around g_value_* functions.
        (signal_emit_unlocked_R): renamed this from signal_emit_R() to reflect
        that this functions acquires the lock on its own now.

23 years agoback out change by mitch@convergence.de and apply patch in bug id #52067
CEST 2001 Paolo Molaro [Thu, 24 May 2001 19:30:40 +0000 (19:30 +0000)]
back out change by mitch@convergence.de and apply patch in bug id #52067

Thu May 24 21:24:16 CEST 2001 Paolo Molaro <lupus@ximian.com>

* gmarkup.c: back out change by mitch@convergence.de and apply patch in
bug id #52067 that fixes the same problem in a more complete manner.
This fixes also a segfault for a malformed XML file and adds a new
test case.

23 years agoreflect renaming of g_string_sprintfa to g_string_printfa
Hans Breuer [Thu, 24 May 2001 16:38:24 +0000 (16:38 +0000)]
reflect renaming of g_string_sprintfa to g_string_printfa

2001-05-24  Hans Breuer  <hans@breuer.org>

* grel.c : reflect renaming of g_string_sprintfa to g_string_printfa

* makefile.msc.in : create an additional static lib to be used from
(at least) glib-genmarshal

23 years agopthread isn't required anymore
Hans Breuer [Thu, 24 May 2001 16:36:47 +0000 (16:36 +0000)]
pthread isn't required anymore

2001-05-24  Hans Breuer  <hans@breuer.org>

* makefile.msc.in : pthread isn't required anymore

23 years agochanged depndencies to build glib-genmarshal first and statically linked
Hans Breuer [Thu, 24 May 2001 16:36:02 +0000 (16:36 +0000)]
changed depndencies to build glib-genmarshal first and statically linked

2001-05-24  Hans Breuer  <hans@breuer.org>

* makefile.msc.in : changed depndencies to build glib-genmarshal
first and statically linked with glib, which makes it independent
from the installed glib version. Added new object files to build.

* gobject.def : updated

23 years agogpointer, not gpointer *.
Owen Taylor [Thu, 24 May 2001 12:52:39 +0000 (12:52 +0000)]
gpointer, not gpointer *.

Thu May 24 08:52:02 2001  Owen Taylor  <otaylor@redhat.com>

* gobject.[ch] (g_value_set_object): gpointer, not
        gpointer *.

23 years agoTiny speed improvement suggested by noon@users.sourceforge.net.
Sebastian Wilhelmi [Wed, 23 May 2001 10:20:56 +0000 (10:20 +0000)]
Tiny speed improvement suggested by noon@users.sourceforge.net.

2001-05-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* garray.c (g_array_remove_index_fast): Tiny speed improvement
suggested by noon@users.sourceforge.net.

* glib/tmpl/arrays.sgml, glib/tmpl/arrays_pointers.sgml,
glib/tmpl/arrays_byte.sgml: Corrected documentation for the
..._sized_new functions. Discovered by noon@users.sourceforge.net.

23 years agomade 'make distcheck' happy.
Sebastian Wilhelmi [Tue, 22 May 2001 14:31:26 +0000 (14:31 +0000)]
made 'make distcheck' happy.

2001-05-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

        * Makefile.am (bin_SCRIPTS): made 'make distcheck' happy.

23 years agoAlso return TRUE for late arrived signals. Thanks to Steven Brooks
Sebastian Wilhelmi [Tue, 22 May 2001 14:20:58 +0000 (14:20 +0000)]
Also return TRUE for late arrived signals. Thanks to Steven Brooks

2001-05-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gthread-win32.c (g_cond_wait_internal): Also return TRUE for
late arrived signals. Thanks to Steven Brooks
<umbrook0@cs.umanitoba.ca> for pointing out.

23 years agoRemoved POSIX_*. Defined G_THREAD_SOURCE to "gthread-win32.c".
Sebastian Wilhelmi [Tue, 22 May 2001 12:28:06 +0000 (12:28 +0000)]
Removed POSIX_*. Defined G_THREAD_SOURCE to "gthread-win32.c".

2001-05-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

        * config.h.win32.in: Removed POSIX_*. Defined G_THREAD_SOURCE to
        "gthread-win32.c".

        * glibconfig.h.win32.in: Define G_HAVE_ISO_VARARGS for gcc, don't
        know about MSC. Define G_THREADS_IMPL_WIN32 instead of
        G_THREADS_IMPL_POSIX and define the right static mutex macros and
        types.

        * build/win32/make.mingw (CXX): Removed PTHREAD defs. Added
-O2 -Wall to compile flags.

        * gthread/gthread-impl.c (g_thread_init): Move the thread
implementation initialization to before assigning
   GThreadFuncs, which now is just struct assigned and not
memcpy'ed. Completed check for zero members of GThreadFuncs.

        * gthread/makefile.mingw: Don't link to pthread anymore.

        * gthread/gthread-win32.c: New file for native thread support for
        win32. Thanks to Hans Breuer <hans@breuer.org> to got me
        kickstarted.

        * gthread/Makefile.am: Also distribute gthread-win32.c.

23 years agoRemoved g_param_spec_stringc.
Sebastian Wilhelmi [Tue, 22 May 2001 12:12:06 +0000 (12:12 +0000)]
Removed g_param_spec_stringc.

2001-05-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gobject.def: Removed g_param_spec_stringc.

23 years agog_thread_create renamed to g_thread_create_full.
Sebastian Wilhelmi [Tue, 22 May 2001 12:06:59 +0000 (12:06 +0000)]
g_thread_create renamed to g_thread_create_full.

2001-05-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib.def: g_thread_create renamed to g_thread_create_full.

* gthread.c: memcpy is not necessary here. We can simply use
struct assignment.

* gmessages.c: Fix compilation error on win32. Added
GFileDescriptor, wich is gint on Unix and FILE* on win32.

23 years agono message
Andy Lanoix [Tue, 22 May 2001 01:11:28 +0000 (01:11 +0000)]
no message

23 years ago*giowin32.c: G_IO_WIN32_WINDOWS_MESSAGES channels
Andy Lanoix [Tue, 22 May 2001 01:10:19 +0000 (01:10 +0000)]
*giowin32.c: G_IO_WIN32_WINDOWS_MESSAGES channels
not handled correctly in g_io_win32_check()

23 years agomake g_value_set_object() take a gpointer v_object so people don't need to
Tim Janik [Tue, 22 May 2001 00:48:06 +0000 (00:48 +0000)]
make g_value_set_object() take a gpointer v_object so people don't need to

Tue May 22 02:46:13 2001  Tim Janik  <timj@gtk.org>

        * gobject.c (g_value_set_object): make g_value_set_object()
        take a gpointer v_object so people don't need to G_OBJECT()
        cast NULL pointers (C code convenience).

23 years agoFix some problems in writing out varargs tests in configure.in
Owen Taylor [Sun, 20 May 2001 14:49:44 +0000 (14:49 +0000)]
Fix some problems in writing out varargs tests in configure.in

Sun May 20 10:47:47 2001  Owen Taylor  <otaylor@redhat.com>

        * configure.in: Fix some problems in writing out varargs
tests in configure.in

23 years agoadd glibintl.h
Havoc Pennington [Sat, 19 May 2001 05:32:50 +0000 (05:32 +0000)]
add glibintl.h

2001-05-19  Havoc Pennington  <hp@pobox.com>

* glib/Makefile.am (IGNORE_HFILES): add glibintl.h

* glib/tmpl/*.sgml: fix various missing docs

23 years agoUse compile checks for ISO C99 and GNU extension varargs macros syntax and
Owen Taylor [Fri, 18 May 2001 16:00:54 +0000 (16:00 +0000)]
Use compile checks for ISO C99 and GNU extension varargs macros syntax and

Fri May 18 10:52:23 2001  Owen Taylor  <otaylor@redhat.com>

* configure.in gmessages.h: Use compile checks for ISO C99 and GNU
extension varargs macros syntax and store result in glibconfig.h
(G_HAVE_ISO_VARARGS, G_HAVE_GNUC_VARARGS) rather than relying
on checking predefined macros.

23 years agodon't g_strdup()/g_free() all parsed attributes and their values twice but
Michael Natterer [Fri, 18 May 2001 12:38:32 +0000 (12:38 +0000)]
don't g_strdup()/g_free() all parsed attributes and their values twice but

2001-05-18  Michael Natterer  <mitch@convergence.de>

* gmarkup.c: don't g_strdup()/g_free() all parsed attributes and
their values twice but simply copy the string pointers from the
GMarkupAttribute struct to the string arrays before passing them
to start_element().

23 years agoUpdated.
Sebastian Wilhelmi [Fri, 18 May 2001 08:49:29 +0000 (08:49 +0000)]
Updated.

2001-05-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/glib-overrides.txt, glib/glib-sections.txt,
glib/tmpl/thread_pools.sgml, glib/tmpl/threads.sgml: Updated.

23 years agoRenamed g_thread_create to g_thread_create_full and added macro
Sebastian Wilhelmi [Fri, 18 May 2001 08:44:57 +0000 (08:44 +0000)]
Renamed g_thread_create to g_thread_create_full and added macro

2001-05-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gthread.c, gthread.h: Renamed g_thread_create to
g_thread_create_full and added macro g_thread_create, which omits
'stack_size', 'bound' and 'priority' parameters. Also removed
'bound' from GThread struct.

* gthreadpool.h, gthreadpool.c: Adapted GThreadPool to the above
changes. GThreadPool lost the 'priority' and 'bound'
members. g_thread_pool_new the 'stack_size', 'bound' and
'priority' parameters.

* tests/mainloop-test.c, tests/thread-test.c,
tests/threadpool-test.c: Adapted to the above changes.

23 years agoFixed mutex deadlock.
Sebastian Wilhelmi [Fri, 18 May 2001 08:36:44 +0000 (08:36 +0000)]
Fixed mutex deadlock.

2001-05-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gmem.c (g_mem_profile): Fixed mutex deadlock.

23 years agoAdd gpattern.o to objects.
Sebastian Wilhelmi [Thu, 17 May 2001 15:15:00 +0000 (15:15 +0000)]
Add gpattern.o to objects.

2001-05-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* makefile.mingw.in: Add gpattern.o to objects.

* glib.def: Export g_thread_exit as well.

* Makefile.am: Fix BUILT_EXTRA_DIST exporting.

23 years agoAdded missing .cvsignore file.
Michael Natterer [Thu, 17 May 2001 12:19:09 +0000 (12:19 +0000)]
Added missing .cvsignore file.

23 years agoAdd inter-library dependencies.
Owen Taylor [Wed, 16 May 2001 18:35:39 +0000 (18:35 +0000)]
Add inter-library dependencies.

Sun May 13 10:31:17 2001  Owen Taylor  <otaylor@redhat.com>

* glib/Makefile.am gobject/Makefile.am gmodule/Makefile.am:
Add inter-library dependencies.

* acinclude.m4: Remove libtool macros.

* autogen.sh: Require libtool-1.4, automake-1.4p1.

23 years agom4macros/Makefile
Havoc Pennington [Tue, 15 May 2001 22:07:21 +0000 (22:07 +0000)]
m4macros/Makefile

2001-05-15  Havoc Pennington  <hp@redhat.com>

* configure.in (AC_OUTPUT): m4macros/Makefile

* m4macros/Makefile.am, m4macros/glib-2.0.m4,
m4macros/glib-gettext.m4:
m4 files moved here on server, Makefile.am added

This is so you can aclocal -I m4macros while avoiding acinclude.m4

* Makefile.am: add m4macros subdir, remove references to glib-2.0.m4

23 years agofix docs; they said we validated the UTF-8, but we can't possibly detect
Havoc Pennington [Tue, 15 May 2001 19:18:08 +0000 (19:18 +0000)]
fix docs; they said we validated the UTF-8, but we can't possibly detect

2001-05-14  Havoc Pennington  <hp@redhat.com>

* gutf8.c (g_utf8_get_char): fix docs; they said we validated
the UTF-8, but we can't possibly detect partial chars since
there's no length arg here, so trying to use this function
on invalid UTF-8 is a bad idea.

23 years agoUpdated German translations for Glib and GTK+ HEAD. Phew.
Matthias Warkus [Tue, 15 May 2001 17:47:49 +0000 (17:47 +0000)]
Updated German translations for Glib and GTK+ HEAD. Phew.

23 years agoAvoid using stderr to be as robust as possible in out-of-memory.
Owen Taylor [Mon, 14 May 2001 14:53:59 +0000 (14:53 +0000)]
Avoid using stderr to be as robust as possible in out-of-memory.

Thu May 10 23:21:30 2001  Owen Taylor  <otaylor@redhat.com>

* gmessages.c (g_log_write_prefix): Avoid using stderr
to be as robust as possible in out-of-memory.

* gmessages.c (g_log_default_handler): Remove some dead
code.

* gutils.c (g_parse_debug_string): Fix to avoid mallocs.

23 years agonew function to check whether a handler is still connected to an instance
Tim Janik [Mon, 14 May 2001 13:55:51 +0000 (13:55 +0000)]
new function to check whether a handler is still connected to an instance

Mon May 14 01:49:01 2001  Tim Janik  <timj@gtk.org>

        * gsignal.[hc] (g_signal_handler_is_connected): new function
        to check whether a handler is still connected to an instance
        (by handler id).

23 years agomake these safe against removal of the current element.
Tim Janik [Fri, 11 May 2001 18:05:16 +0000 (18:05 +0000)]
make these safe against removal of the current element.

Fri May 11 18:25:23 2001  Tim Janik  <timj@gtk.org>

        * gdataset.c:
        (g_dataset_foreach):
        (g_datalist_foreach): make these safe against removal of the
        current element.

23 years agoUpdated Ukrainian transaltion
Yuri Syrota [Fri, 11 May 2001 12:09:21 +0000 (12:09 +0000)]
Updated Ukrainian transaltion

23 years agoUpdated Ukrainian transaltion
Yuri Syrota [Fri, 11 May 2001 12:02:34 +0000 (12:02 +0000)]
Updated Ukrainian transaltion

23 years agochange env variable to G_MESSAGES_PREFIXED, suggested by Tim
Havoc Pennington [Fri, 11 May 2001 03:07:53 +0000 (03:07 +0000)]
change env variable to G_MESSAGES_PREFIXED, suggested by Tim

2001-05-10  Havoc Pennington  <hp@pobox.com>

* gmessages.c (g_log_write_prefix): change env variable to
G_MESSAGES_PREFIXED, suggested by Tim

23 years agouse g_str_hash() algorithm to generate hashes.
Tim Janik [Thu, 10 May 2001 13:58:40 +0000 (13:58 +0000)]
use g_str_hash() algorithm to generate hashes.

Thu May 10 15:19:01 2001  Tim Janik  <timj@gtk.org>

        * gscanner.c (g_scanner_key_hash): use g_str_hash() algorithm
        to generate hashes.

        * gmem.c (standard_calloc): free() doesn't return a value
        (Mark Murnane).

Thu May 10 14:00:48 2001  Tim Janik  <timj@gtk.org>

        * gparamspecs.[hc]: removed g_param_spec_stringc() in lack of
        evidence of public need.

        * gsignal.h: added g_signal_disconnect_by_func(),
        g_signal_block_by_func() and g_signal_unblock_by_func() convenience
        macros as per owen's request.

        * gtype.c (SIZEOF_FUNDAMENTAL_INFO): align sizeof (GTypeFundamentalInfo)
        to size of longs and pointers.

23 years agoGet rid of --enable-msg-prefix
Havoc Pennington [Wed, 9 May 2001 16:36:17 +0000 (16:36 +0000)]
Get rid of --enable-msg-prefix

2001-04-26  Havoc Pennington  <hp@redhat.com>

* configure.in: Get rid of --enable-msg-prefix

* gmessages.c: make whether to prefix the messages with
appname/pid a runtime setting, not a compile-time setting.  Change
default to include prefix for debug/warning/error type messages.

23 years agoOps, forgot this.
Sebastian Wilhelmi [Wed, 9 May 2001 12:54:37 +0000 (12:54 +0000)]
Ops, forgot this.

Ops, forgot this.

23 years agoUpdates after some renaming took place.
Sebastian Wilhelmi [Wed, 9 May 2001 12:53:42 +0000 (12:53 +0000)]
Updates after some renaming took place.

2001-05-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/thread_pools.sgml, glib/tmpl/thread_pools.sgml:
Updates after some renaming took place.

23 years agoRenamed 'value' and 'arg' to 'data' and 'thread_func' to 'func' to make it
Sebastian Wilhelmi [Wed, 9 May 2001 12:51:21 +0000 (12:51 +0000)]
Renamed 'value' and 'arg' to 'data' and 'thread_func' to 'func' to make it

2001-05-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gthread.c, gthread.h: Renamed 'value' and 'arg' to 'data' and
'thread_func' to 'func' to make it more consistent with the rest
of GLib.

* gthreadpool.c, gthreadpool.h: Moved 'stack_size' from the public
members of GThreadPool to the private ones. Renamed 'thread_func'
to 'func' as above. Moved up 'user_data' in g_thead_pool_new
argument list and in GThreadPool struct.

23 years agoClarification for g_mutex_trylock.
Sebastian Wilhelmi [Tue, 8 May 2001 14:21:40 +0000 (14:21 +0000)]
Clarification for g_mutex_trylock.

2001-05-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/threads.sgml: Clarification for g_mutex_trylock.

23 years agoremoved #include <unistd.h> sneaked in by sopwith in november.
Tim Janik [Tue, 8 May 2001 13:50:38 +0000 (13:50 +0000)]
removed #include <unistd.h> sneaked in by sopwith in november.

Tue May  8 15:33:31 2001  Tim Janik  <timj@gtk.org>

        * gcompletion.h: removed #include <unistd.h> sneaked in by
        sopwith in november.

23 years agoUpdated.
Sebastian Wilhelmi [Tue, 8 May 2001 08:25:43 +0000 (08:25 +0000)]
Updated.

2001-05-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/threads.sgml, glib/glib-overrides.txt: Updated.

23 years agoMoved func and arg members from GRealThread to GThread, such that they can
Sebastian Wilhelmi [Tue, 8 May 2001 08:23:18 +0000 (08:23 +0000)]
Moved func and arg members from GRealThread to GThread, such that they can

2001-05-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gmain.c, gthread.c, gthread.h: Moved func and arg members from
GRealThread to GThread, such that they can be accessed by the
user.

* gthread.c, gthread.h: Due to popular demand (Tim being the
populus here ;-) threads now have a 'return value', which is
returned by g_thread_join and is either the return of the topmost
thread function or the value given to g_thread_exit.

* gthreadpool.c, tests/mainloop-test.c, tests/thread-test.c:
Adapted to the above change.

23 years agodon't g_assert() the user specified time, but g_return_val_if_fail() here.
Tim Janik [Tue, 8 May 2001 05:25:35 +0000 (05:25 +0000)]
don't g_assert() the user specified time, but g_return_val_if_fail() here.

Fri May  4 04:14:45 2001  Tim Janik  <timj@gtk.org>

        * gthread-posix.c (g_cond_timed_wait_posix_impl): don't g_assert()
        the user specified time, but g_return_val_if_fail() here.

23 years agodon't try to export g_strcpy, it is g_stpcpy; updated and added some
Hans Breuer [Sun, 6 May 2001 13:57:21 +0000 (13:57 +0000)]
don't try to export g_strcpy, it is g_stpcpy; updated and added some

2001-01-06  Hans Breuer  <hans@breuer.org>

* glib.def : don't try to export g_strcpy, it is g_stpcpy;
updated and added some tweaking for functions which got
renamed recently, to avoid the update hassle if it can
simply be done compatible. Should vanish if there is a
stable version for win32.

23 years agoglib-mkenums is not a compiled program, so shouldn't be in the
James Henstridge [Sat, 5 May 2001 08:38:35 +0000 (08:38 +0000)]
glib-mkenums is not a compiled program, so shouldn't be in the

2001-05-05  James Henstridge  <james@daa.com.au>

        * Makefile.am: glib-mkenums is not a compiled program, so shouldn't
        be in the bin_PROGRAMS primary.  Put it in bin_SCRIPTS instead, and
        removed the glib_mkenums_SOURCES var.

23 years agoReleased 1.3.5 GLIB_1_3_5
Owen Taylor [Fri, 4 May 2001 22:34:43 +0000 (22:34 +0000)]
Released 1.3.5

Fri May  4 11:49:18 2001  Owen Taylor  <otaylor@redhat.com>

* Released 1.3.5

* NEWS: Updated

* configure.in (GLIB_MICRO_VERSION): Up version to 1.3.5,
interface/binary age 0.