Owen Taylor [Wed, 25 Oct 2000 23:39:32 +0000 (23:39 +0000)]
Don't use implicit casts from void * since this will get included from C++
Wed Oct 25 19:11:03 2000 Owen Taylor <otaylor@redhat.com>
* gbsearcharray.h (g_bsearch_array_get_nth): Don't use implicit
casts from void * since this will get included from C++ too
at times.
Tim Janik [Wed, 25 Oct 2000 22:33:26 +0000 (22:33 +0000)]
added g_value_set_static_string().
Thu Oct 26 00:30:27 2000 Tim Janik <timj@gtk.org>
* gvaluetypes.[hc]: added g_value_set_static_string().
* gboxed.[hc]: const corrections. added g_value_set_static_boxed().
Tim Janik [Wed, 25 Oct 2000 20:36:35 +0000 (20:36 +0000)]
added newly added gobject/ headers.
Tue Oct 24 22:09:14 2000 Tim Janik <timj@gtk.org>
* glib-object.h: added newly added gobject/ headers.
* gmesage.c: print g_message() output to stderr instead of stdout.
Wed Oct 25 20:27:02 2000 Tim Janik <timj@gtk.org>
* gtype.c (g_type_free_instance): for the moment, freeing object
structures will fill their memory portion with 0xAA. there's a
FIXME there, remove this line at a later point.
Tue Oct 24 23:10:26 2000 Tim Janik <timj@gtk.org>
* glib-genmarshal.1:
* glib-genmarshal.c: added publically installed marshaller generator.
* gtype.h: added G_TYPE_INSTANCE_GET_INTERFACE() to retrive a certain
interface VTable from instances.
Mon Oct 23 08:28:15 2000 Tim Janik <timj@gtk.org>
* gobject.[hc]: new functions for closure maintenance:
(g_object_watch_closure): maintain validity of the object and
the closure for objects that are used as data part of a closure.
(g_cclosure_new_object): convenience function to create C closures
that have an object as data argument.
(g_closure_new_object): convenience function to create closures
that have an object as data argument.
* gclosure.[hc]: implementation of GClosure mechanism.
a closure is basically an encapsulation of a callback function
and its environment. ideally, most places supporting callback
functions will simply take a GClosure* pointer and thus unify
callback environments wrg destroy notification etc.
GClosure provides destroy notifiers for arbitrary data pointers,
reference counting, invalidation notification (it can be invalidated
which is merely a deactivate state) and a marshallinbg abstraction.
GCClosure is also provided in these files, they present a specialized
GClosure implementation for C language callbacks.
* genum.c: macro cleanups.
* gboxed.[hc]: new files, for boxed type abstraction.
(g_boxed_copy): copy a boxed structure
(g_boxed_free): free a boxed structure
(g_value_set_boxed):
(g_value_get_boxed): standard GValue functions for boxed types
(g_boxed_type_register_static): convenience function for easy
introduction of new G_TYPE_BOXED derivatives.
* gparam.[hc]: introduced g_param_type_register_static(), a short hand
for creation of new GParamSpec derived types.
* gtype.[hc]: many fixes, introduced ability to flag individual
type nodes as ABSTRACT upon registration, added value_peek_pointer()
to the value table to peek at GValue contents as a pointer for types
that support this. fixed up GValue checks.
* gvalue.[hc]: added g_value_fits_pointer() and g_value_get_as_pointer()
to peek at the value contents as pointer.
* *.[hc]: adaptions to type macro fixes and changes in the type
registration API.
* many const corrections over the place.
Sat Oct 21 02:49:56 2000 Tim Janik <timj@gtk.org>
* gtype.c (g_type_conforms_to): this function basically behaves like
and is_a check, except that it _additionally_ features interfaces
for instantiatable types. enforce this in the second branch as well
(`type' conforms_to `type') even if `type' is not an interface type.
Fri Oct 20 15:31:04 2000 Tim Janik <timj@gtk.org>
* gvaluetypes.[hc]: added G_TYPE_POINTER implementation from jrb.
* gtype.[hc]:
* gobject.c:
* gvaluetypes.c: added GTypeValueTable.value_peek_pointer and
suitable implementations of this for G_TYPE_STRING, G_TYPE_OBJECT
and G_TYPE_POINTER.
Mon Aug 21 04:13:37 2000 Tim Janik <timj@gtk.org>
* gbsearcharray.[hc]: long standing needed generic implementation
of a binary searchable, sorted and dynamically sized array.
Sebastian Wilhelmi [Wed, 25 Oct 2000 10:58:46 +0000 (10:58 +0000)]
Add @GLIB_DEBUG_FLAGS@ to INCLUDES for accessing -DG_ENABLE_DEBUG as
2000-10-25 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* Makefile.am : Add @GLIB_DEBUG_FLAGS@ to INCLUDES for accessing
-DG_ENABLE_DEBUG as needed in gthread-posix.c.
* gthread-posix.c: Revamped error handling for native thread
function calls. Now EPERM errors are ignored for some commands and
only a warning message is output once (at first occurrence).
Tor Lillqvist [Mon, 23 Oct 2000 19:17:41 +0000 (19:17 +0000)]
Updates.
Sebastian Wilhelmi [Mon, 23 Oct 2000 14:15:22 +0000 (14:15 +0000)]
Use one = instead of two, which is plainly wrong.
2000-10-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Use one = instead of two, which is plainly wrong.
Tor Lillqvist [Thu, 19 Oct 2000 17:52:12 +0000 (17:52 +0000)]
Pass -DGSPAWN_HELPER when building it. Link with user32.lib.
2000-10-19 Tor Lillqvist <tml@iki.fi>
* makefile.msc.in: Pass -DGSPAWN_HELPER when building it. Link
with user32.lib.
* gspawn-win32.c
* gfileutils.c: Make them compile with picky MSVC.
* gwin32.h: New file. Move Win32-only stuff that isn't related to
GIOChannels here from giochannel.h.
* Makefile.am: Add it here.
* giochannel.h: Move stuff to gwin32.h.
* glib.h: On Win32, include gwin32.h.
Owen Taylor [Thu, 19 Oct 2000 15:21:04 +0000 (15:21 +0000)]
Change ERROR_OTHER to ERROR_FAILED, add some dummy marking with _().
Mon Sep 11 10:03:24 2000 Owen Taylor <otaylor@redhat.com>
* glib.h convert.c (g_convert_with_fallback): Change
ERROR_OTHER to ERROR_FAILED, add some dummy marking with _().
* docs/reference/glib/glib-sections.txt
docs/reference/glib/glib-docs.sgml Update for g_convert,
g_unicode_validate.
Tor Lillqvist [Mon, 16 Oct 2000 19:55:26 +0000 (19:55 +0000)]
Remove alloca stuff from here. galloca.h takes care of it, correctly.
2000-10-16 Tor Lillqvist <tml@iki.fi>
* glibconfig.h.win32.in: Remove alloca stuff from here. galloca.h
takes care of it, correctly.
Tor Lillqvist [Mon, 16 Oct 2000 18:55:38 +0000 (18:55 +0000)]
Add gspawn-win32.c to EXTRA_DIST.
Tor Lillqvist [Mon, 16 Oct 2000 18:54:29 +0000 (18:54 +0000)]
Some more debugging output. (g_io_channel_win32_poll): Remove unused vars.
2000-10-16 Tor Lillqvist <tml@iki.fi>
* giowin32.c (reader_thread): Some more debugging output.
(g_io_channel_win32_poll): Remove unused vars.
* gfileutils.c: Changes for Win32, with no unistd.h and no
S_ISLNK().
* gspawn-win32.c: Implementation of the g_spwan_* functions for
Win32. Due to the general non-Unixness of Win32, much of the
functionality that is relatively clean to implement on Unix, is
hard to do on Win32. We must use a separate helper program to
change directory, close extra file descriptors, redirect the std
ones, as needed, and only then start the child process. No child
process pid can be returned, unfortunately. Or if we used
CreateProcess directly, it probably could. (Now we use the spawnv*
functions from msvcrt.)
* glib.def: Add new entry points.
* glib.def
* giowin32.c: Remove g_io_channel_win32_wait_for_condition(),
g_io_channel_win32_poll() subsumes it.
* gbacktrace.h: G_BREAKPOINT for MSVC (on the ix86).
* gwin32.c (g_win32_getlocale): Use "sp" for
LANG_CROATIAN+SUBLANG_SERBIAN_LATIN.
* makefile.{mingw,msc}.in (glib_OBJECTS): Add new files.
Add gspawn-win32-helper.exe rule.
* tests/makefile.{mingw,msc}.in (TESTS): Add shell-test and
spawn-test.
* tests/spawn-test.c: (run_tests): On Win32, don't try to run
/bin/sh, but ipconfig (no special significance in choosing that,
just a program that outputs something to stdout).
Raja R Harinath [Mon, 16 Oct 2000 01:02:19 +0000 (01:02 +0000)]
gmodule: New variable. (dist-hook): Handle $(BUILT_EXTRA_DIST).
gmodule:
* Makefile.am (BUILT_EXTRA_DIST): New variable.
(dist-hook): Handle $(BUILT_EXTRA_DIST).
gobject:
* Makefile.am (BUILT_EXTRA_DIST): New variable.
(dist-hook): Handle $(BUILT_EXTRA_DIST).
(*): Remove traces of @STRIP_{BEGIN,END}@.
gthread:
* Makefile.am (BUILT_EXTRA_DIST): New variable.
(dist-hook): Handle $(BUILT_EXTRA_DIST).
docs/reference:
'make distcheck' fixes.
* glib/Makefile.am (EXTRA_DIST): Add $(DOC_MODULE)-decl.txt.
(html): Run 'gtkdoc-fixxref' in $(srcdir).
(dist-check-gtkdoc): Add missing quote.
(dist-hook): Copy in dependency order, so that none of the
makerules are fired in a tarball build.
* gobject/Makefile.am: Likewise.
toplevel:
Remove need for acconfig.h, and misc. cleanups.
* acglib.m4 (GLIB_SIZEOF): Add 'autoheader' comment to
AC_DEFINE_UNQUOTED.
(GLIB_BYTE_CONTENTS): Likewise.
* configure.in: Add 'autoheader' comments to all AC_DEFINE(...)
and AC_DEFINE_UNQUOTED(...) lines.
Replace AC_MSG_CHECKING/AC_CACHE_VAL with AC_CACHE_CHECK.
(AM_PROG_LIBTOOL): Move after AC_PROG_CC.
* acconfig.h: Empty out.
* Makefile.am (BUILT_EXTRA_DIST): New variable. List 'dist'able
files that are created in the builddir.
(dist-hook): Handle those files.
(libglib_1_3_la_SOURCES): Remove @ALLOCA@. @ALLOCA@ should only
be used in an _LDADD or _LIBADD, since it expands (if necessary)
to 'alloca.o'.
* tests/Makefile.am (BUILT_EXTRA_DIST): New variable.
(dist-hook): Handle $(BUILT_EXTRA_DIST).
Sebastian Wilhelmi [Fri, 13 Oct 2000 13:52:47 +0000 (13:52 +0000)]
Added inline documentation.
2000-10-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* grand.c: Added inline documentation.
* docs/refernce/glib/glib-sections.txt: Added misc items.
* docs/refernce/glib/tmpl/random_numbers.sgml: Documentation for
the random number generator.
Sebastian Wilhelmi [Fri, 13 Oct 2000 08:16:54 +0000 (08:16 +0000)]
Readded GFreeFunc, g_node_insert_after and g_find_program_in_path resp.,
2000-10-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
g_node_insert_after and g_find_program_in_path resp., which
mysteriously disappeared during the glib.h dissection.
Sebastian Wilhelmi [Thu, 12 Oct 2000 15:41:37 +0000 (15:41 +0000)]
Revert unintended commit...
Revert unintended commit...
Sebastian Wilhelmi [Thu, 12 Oct 2000 15:36:29 +0000 (15:36 +0000)]
.cvsignore updates
.cvsignore updates
Sebastian Wilhelmi [Thu, 12 Oct 2000 14:55:37 +0000 (14:55 +0000)]
Adapted accordingly to header separation and GLIB_HAVE_ALLOCA_H renaming.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glibconfig.h.win32.in: Adapted accordingly to header separation
and GLIB_HAVE_ALLOCA_H renaming.
Sebastian Wilhelmi [Thu, 12 Oct 2000 14:28:39 +0000 (14:28 +0000)]
.cvsignore updates
.cvsignore updates
Sebastian Wilhelmi [Thu, 12 Oct 2000 12:16:16 +0000 (12:16 +0000)]
Added the new headers to glibinclude_HEADERS.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* Makefile.am: Added the new headers to glibinclude_HEADERS.
* glib.h: Forgot to include gerror.h.
Sebastian Wilhelmi [Thu, 12 Oct 2000 11:52:07 +0000 (11:52 +0000)]
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
Sebastian Wilhelmi [Thu, 12 Oct 2000 11:39:50 +0000 (11:39 +0000)]
Removed cruft from old threading code.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Removed cruft from old threading code.
Sebastian Wilhelmi [Thu, 12 Oct 2000 08:06:16 +0000 (08:06 +0000)]
define GLIB_HAVE_ALLOCA_H instead of including alloca.h in glibconfig.h,
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: define GLIB_HAVE_ALLOCA_H instead of including
alloca.h in glibconfig.h, GLIB_HAVE_ALLOCA_H is used in glib.h.
Raja R Harinath [Tue, 10 Oct 2000 05:04:36 +0000 (05:04 +0000)]
Remove stray '}'
Raja R Harinath [Mon, 9 Oct 2000 21:06:01 +0000 (21:06 +0000)]
Work with beta autoconf 2.50.
* configure.in (GLIB_MAJOR_VERSION): Use GLIB_DIVERT_BEFORE_HELP
instead of AC_DIVERT_PUSH(),AC_DIVERT_POP.
(AC_CHECK_HEADERS): Remove redundant AC_DEFINE(HAVE_...).
(REALLOC_0_WORKS): Move AC_DEFINE outside AC_CACHE_VAL.
(dlopen): Quote nested AC_CHECK_... calls.
* acglib.m4 (GLIB_TR_SH, GLIB_TR_CPP): Utility macros copied from
beta autoconf 2.50.
(GLIB_DIVERT_BEFORE_HELP): New macro that works both with autoconf
2.13 and beta autoconf 2.50.
(GLIB_SIZEOF, GLIB_BYTECONTENTS): Use GLIB_TR_*.
Raja R Harinath [Mon, 9 Oct 2000 20:15:55 +0000 (20:15 +0000)]
Use this to specify that 'configure' depends on acglib.m4.
* Makefile.am (CONFIGURE_DEPENDENCIES): Use this to specify
that 'configure' depends on acglib.m4.
Raja R Harinath [Mon, 9 Oct 2000 18:02:36 +0000 (18:02 +0000)]
Forgot to commit this.
Raja R Harinath [Mon, 9 Oct 2000 18:00:43 +0000 (18:00 +0000)]
Don't set to $top_srcdir)/gobject.
* gobject/Makefile.am (DOC_SOURCE_DIR): Don't set to
$top_srcdir)/gobject.
Raja R Harinath [Mon, 9 Oct 2000 17:58:11 +0000 (17:58 +0000)]
Don't set to $(top_srcdir).
* glib/Makefile.am (DOC_SOURCE_DIR): Don't set to $(top_srcdir).
Havoc Pennington [Mon, 9 Oct 2000 16:24:57 +0000 (16:24 +0000)]
Add new files.
2000-10-09 Havoc Pennington <hp@redhat.com>
* Makefile.am, tests/Makefile.am: Add new files.
* tests/spawn-test.c, tests/shell-test.c: new tests for
the shell/spawn stuff
* gutils.c (g_find_program_in_path): convert a relative
program name into an absolute pathname to an existing
executable
* gspawn.h, gspawn.c: New fork/exec API
* gshell.h, gshell.c: Shell-related utilities, at the moment
simply routines to parse argv and quote/unquote strings
* guniprop.c (g_unichar_isspace): Return TRUE for the
ASCII space characters isspace() returns TRUE for.
* gfileutils.c (g_file_get_contents): Convenience function
to slurp entire file into a string and return it. Partially
written by Joel Becker.
(g_file_test): file test function
Tor Lillqvist [Fri, 6 Oct 2000 21:43:25 +0000 (21:43 +0000)]
Fix the Win32-only code to use current API,
2000-10-06 Tor Lillqvist <tml@iki.fi>
* tests/gio-test.c (main): Fix the Win32-only code to use current
API, g_io_channel_win32_make_pollfd() and g_io_channel_win32_poll().
Tor Lillqvist [Fri, 6 Oct 2000 21:32:59 +0000 (21:32 +0000)]
Revamp to be like makefile.mingw.in, make the MSVC build actually work
2000-10-06 Tor Lillqvist <tml@iki.fi>
* makefile.msc.in: Revamp to be like makefile.mingw.in, make
the MSVC build actually work again.
* gmodule/makefile.msc.in
* gobject/makefile.msc.in
* gthread/makefile.msc.in: New files, like their mingw counterparts.
* gmodule/Makefile.am
* gobject/Makefile.am
* gthread/Makefile.am: Make and distribute them.
* */makefile.mingw.in: Allow override of GLib version number from
the build/win32/module.defs file.
* glib.def: Add new entry point.
Fixes from Hans Breuer:
* glib.h (struct DIR): Keep the last readdir result cached inside
the DIR struct, to enable several DIRs being open simultaneously.
* gwin32.c (g_win32_readdir): Use the above instead of static.
* giowin32.c (g_io_channel_win32_make_pollfd): Insert cast to keep
MSVC happy.
Sebastian Wilhelmi [Thu, 5 Oct 2000 15:56:41 +0000 (15:56 +0000)]
Fixed #10086.
2000-10-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib-sections.txt, tmpl/modules.sgml: Fixed #10086.
Sebastian Wilhelmi [Thu, 5 Oct 2000 09:07:53 +0000 (09:07 +0000)]
Changed alloca stuff a bit: when we have a working alloca.h, we're not
2000-10-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Changed alloca stuff a bit: when we have a working
alloca.h, we're not messing with alloca any further. Should fix a
bug reported by Bernd Demian <wega@csc-dd.de>.
Martin Baulig [Wed, 4 Oct 2000 09:20:55 +0000 (09:20 +0000)]
Reverted my last commit:
2000-09-30 Martin Baulig <baulig@suse.de>
* configure.in (HAVE_THREADS): New automake conditional.
* Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we
actually have threads.
Martin Baulig [Sat, 30 Sep 2000 02:14:04 +0000 (02:14 +0000)]
Put the pkg-config scripts back to the correct pkg-config syntax
(the pkg-config that comes with the RedHat 7.0 glib-gtkbeta RPM and
not the one from pkgconfig.sourceforge.net which is old).
Jonathan Blandford [Fri, 29 Sep 2000 23:13:02 +0000 (23:13 +0000)]
Added function to keep symetry with g_node_insert_before. 2000-09-29
2000-09-29 Jonathan Blandford <jrb@redhat.com>
* gnode.c (g_node_insert_after): Added function to keep symetry
with g_node_insert_before.
2000-09-29 Jonathan Blandford <jrb@redhat.com>
* glib/tmpl/trees-nary.sgml: Add g_node_insert_after().
Martin Baulig [Fri, 29 Sep 2000 22:18:56 +0000 (22:18 +0000)]
New automake conditional. Only compile the gthread subdirectory if we
2000-09-30 Martin Baulig <baulig@suse.de>
* configure.in (HAVE_THREADS): New automake conditional.
* Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we
actually have threads.
Martin Baulig [Fri, 29 Sep 2000 22:07:44 +0000 (22:07 +0000)]
.... and now we can remove them again.
Martin Baulig [Fri, 29 Sep 2000 22:05:39 +0000 (22:05 +0000)]
Adding empty files .... sorry, sometimes CVS is really stupid :-(
Martin Baulig [Fri, 29 Sep 2000 22:03:57 +0000 (22:03 +0000)]
Small fixes.
Martin Baulig [Fri, 29 Sep 2000 20:36:52 +0000 (20:36 +0000)]
Set this to `$(libexecdir)/pkgconfig'; this is the directory where
2000-09-29 Martin Baulig <baulig@suse.de>
* Makefile.am (pkgconfigdir): Set this to `$(libexecdir)/pkgconfig';
this is the directory where pkg-config actually looks.
* *.pc.in: Made the pkg-config scripts actually work.
Martin Baulig [Fri, 29 Sep 2000 13:40:21 +0000 (13:40 +0000)]
Several minor ANSI C fixes.
2000-09-29 Martin Baulig <baulig@suse.de>
Several minor ANSI C fixes.
Added missing casts:
* gtype.c (type_class_init): `(gpointer) bnode->data->class.class_init_base'
in call to g_slist_prepend() and
'GBaseInitFunc class_init_base = (GBaseInitFunc) slist->data'.
* gobject.c: Put text following #endif into comments.
Martin Baulig [Fri, 29 Sep 2000 13:37:01 +0000 (13:37 +0000)]
Several minor ANSI C fixes.
2000-09-29 Martin Baulig <baulig@suse.de>
Several minor ANSI C fixes.
Added missing casts:
* gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
* gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
(g_idle_add_full): `(gpointer) function' in call to g_source_add().
* gstrfuncs.c (g_strdown): `s = (guchar *) string' and
`return (gchar *) string'.
(g_strup): Likewise.
(g_strchug): `start = (guchar*) string' in 1st for() argument;
`strlen ((gchar *) start)' in call to g_memmove().
* gstring.c (g_string_down): `s = (guchar *) string->str'.
(g_string_up): Likewise.
* gthreadpool.c (stop_this_thread_marker):
`(gpointer) &g_thread_pool_new'.
* gunidecomp.h (decomp_table[]): Cast all the strings to
`unsigned char *'.
Put text following #endif into comments:
* gmain.c: here.
Sebastian Wilhelmi [Fri, 29 Sep 2000 13:10:41 +0000 (13:10 +0000)]
Added errorcheck mutexes. These are activated through the preprocessor
2000-09-29 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, glib.h: Added errorcheck mutexes. These are
activated through the preprocessor symbol
G_ERRORCHECK_MUTEXES. Need to add an extra word to StaticMutex in
order to achieve this. g_(static_)mutex_* functions instrument the
mutex operations with mutex name and location, when compiled with
-DG_ERRORCHECK_MUTEXES. g_thread_init activates the errorcheck
mutexes, when compiled with -DG_ERRORCHECK_MUTEXES.
* gthread/gthread-impl.c: Added errorcheck mutexes. New
exported function
g_thread_init_with_errorcheck_mutexes, which is called instead of
g_thread_init, when compiled with -DG_ERRORCHECK_MUTEXES. New
static functions
g_mutex_(new|lock|trylock|unlock|free)_errorcheck_impl to
implement errorcheck mutexes.
* gthread/gthread-posix.impl.c, gthread/gthread-solaris-impl.c:
Define the size of a mutex.
Havoc Pennington [Fri, 29 Sep 2000 02:56:43 +0000 (02:56 +0000)]
fix indentation (GConvertError): generic error is conventionally called
2000-09-28 Havoc Pennington <hp@pobox.com>
* glib.h (GThreadPriority): fix indentation
(GConvertError): generic error is conventionally called
_FAILED rather than _OTHER, at least at the moment,
according to GError docs in docs/reference.
* gconvert.c: s/_OTHER/_FAILED/
Sebastian Wilhelmi [Thu, 28 Sep 2000 14:06:26 +0000 (14:06 +0000)]
.cvsignore updates
.cvsignore updates
Sebastian Wilhelmi [Thu, 28 Sep 2000 13:11:23 +0000 (13:11 +0000)]
Adjusted the test for an unimplemented getpwuid_r. Info from Michael
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Adjusted the test for an unimplemented
getpwuid_r. Info from Michael Pruett. This is just a forward
merge from glib-1-2.
Sebastian Wilhelmi [Thu, 28 Sep 2000 07:54:40 +0000 (07:54 +0000)]
Moved determination of G_THREAD_FLAGS before G_THREAD_LIBS. Check for
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Moved determination of G_THREAD_FLAGS before
G_THREAD_LIBS. Check for UnixWare systems and set the right cflags
and libs there (it needs -Kthread for the native compiler and
-pthread for gcc). Thanks to Boyd Lynn Gerber <gerberb@zenez.com>
for the info.
* configure.in: Fail immediately, when no thread library is found,
instead of continuing searching for rt libs etc. Changed almost
all occurances of $enable_threads to $have_threads, as that's,
what we want.
* tests/threadpool-test.c: Define vars inside the guard to avoid
warnings.
Sebastian Wilhelmi [Thu, 28 Sep 2000 07:45:04 +0000 (07:45 +0000)]
Some platforms support 64 bit 'long long', but you can not printf or scanf
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, tests/type-test.c: Some platforms support 64 bit
'long long', but you can not printf or scanf them. In that case,
don't define G_G{UINT|INT}64_FORMAT. Changed the type-test program
to reflect that.
Sebastian Wilhelmi [Thu, 28 Sep 2000 07:35:02 +0000 (07:35 +0000)]
max_len can't be initialized statically as it might call a function. So do
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gutils.c (g_get_current_dir): max_len can't be initialized
statically as it might call a function. So do it at first call.
Sebastian Wilhelmi [Thu, 28 Sep 2000 07:32:07 +0000 (07:32 +0000)]
Moved declaration of g_log_domain_gmodule up before the inclusion of
2000-09-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmodule.h: Moved declaration of g_log_domain_gmodule up before
the inclusion of glib.h to make it compile on non-gcc compilers.
Elliot Lee [Tue, 26 Sep 2000 16:56:52 +0000 (16:56 +0000)]
Add G_GNUC_PURE macro (but don't use it anywhere).
Add G_GNUC_PURE macro (but don't use it anywhere).
Elliot Lee [Mon, 25 Sep 2000 21:28:14 +0000 (21:28 +0000)]
Add a few missing G_GNUC_CONST's.
Add a few missing G_GNUC_CONST's.
Elliot Lee [Mon, 25 Sep 2000 15:46:12 +0000 (15:46 +0000)]
Missing piece of previous commit - add @ALLOCA@ to sources (normally
Missing piece of previous commit - add @ALLOCA@ to sources (normally expands to nothing).
Sebastian Wilhelmi [Mon, 25 Sep 2000 14:28:56 +0000 (14:28 +0000)]
Remove empty SUBDIRS line, as that prevents make dist from working.
2000-09-25 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* Makefile.am: Remove empty SUBDIRS line, as that prevents make
dist from working.
Tor Lillqvist [Thu, 21 Sep 2000 16:17:32 +0000 (16:17 +0000)]
Add gconvert.o. Use libiconv.
2000-09-21 Tor Lillqvist <tml@iki.fi>
* makefile.mingw.in: Add gconvert.o. Use libiconv.
* config.h.win32.in: Define HAVE_GETCWD.
* glib.def: Add new entry points.
* gthread/makefile.mingw.in: Use pthreads macros from ../build.
Sebastian Wilhelmi [Thu, 21 Sep 2000 12:49:10 +0000 (12:49 +0000)]
The last released automake (1.4) still requires AM_PROG_LIBTOOL instead of
2000-09-21 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: The last released automake (1.4) still requires
AM_PROG_LIBTOOL instead of AC_PROG_LIBTOOL, so use that for the
time being.
Sebastian Wilhelmi [Tue, 19 Sep 2000 14:30:35 +0000 (14:30 +0000)]
Test for the existence of getcwd, and use it only when found.
2000-09-19 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* acconfig.h, configure.in, gutils.c: Test for the existence of
getcwd, and use it only when found.
* glib.h: Only use the gcc-variable-macro-argument-extension for
gcc >= 2.4. Both patches from Jonas Oberg <jonas@gnu.org>.
Owen Taylor [Mon, 18 Sep 2000 14:55:24 +0000 (14:55 +0000)]
Implement g_ucs4_to_utf8 which was in
Mon Sep 18 10:58:21 2000 Owen Taylor <otaylor@redhat.com>
* gutf8.c: Implement g_ucs4_to_utf8 which was in
Elliot Lee [Sun, 17 Sep 2000 22:18:48 +0000 (22:18 +0000)]
Sun Sep 17 2000 Elliot Lee <sopwith@redhat.com> Define g_alloca() as an
Sun Sep 17 2000 Elliot Lee <sopwith@redhat.com>
* glib.h configure.in: Define g_alloca() as an alloca-that-works-anywhere.
* gconvert.c: Fix warnings which could have caused problems on 64-bit platforms.
Owen Taylor [Mon, 11 Sep 2000 03:03:18 +0000 (03:03 +0000)]
Havoc Pennington's implementation of convenient character set conversion
Sun Sep 10 12:37:40 2000 Owen Taylor <otaylor@redhat.com>
* glib.h gconvert.c (g_convert): Havoc Pennington's implementation
of convenient character set conversion using iconv, with
the addition of GError. We probably need a fallback that
just does conversions between, say UTF-8,16,32 and ISO-8859-1
for targets without iconv at all.
Also add g_convert_with_fallback() to take care of conversions
where we accept some loss going to the target encoding.
Havoc Pennington [Mon, 11 Sep 2000 00:09:31 +0000 (00:09 +0000)]
Add this function.
2000-09-10 Havoc Pennington <hp@redhat.com>
* gutf8.c (g_utf8_validate): Add this function.
Owen Taylor [Sun, 10 Sep 2000 16:04:33 +0000 (16:04 +0000)]
Add a missing g_return_if_fail().
Sat Sep 9 18:50:42 2000 Owen Taylor <otaylor@redhat.com>
* gstrfuncs.c (g_strescape): Add a missing g_return_if_fail().
Owen Taylor [Sun, 10 Sep 2000 16:01:15 +0000 (16:01 +0000)]
Move call to g_type_free_instance() here from g_object_do_finalize, since
Sat Sep 9 20:04:13 2000 Owen Taylor <otaylor@redhat.com>
* gobject.c (g_object_last_unref): Move call to
g_type_free_instance() here from g_object_do_finalize,
since g_type_free_instance() can unload the object's
implementation.
Tim Janik [Thu, 7 Sep 2000 23:08:25 +0000 (23:08 +0000)]
for non-i386 and non-alpha, or non gcc, implement BREAKPOINT() as raise (5
Mon Aug 21 03:57:46 2000 Tim Janik <timj@gtk.org>
* glib.h (G_BREAKPOINT): for non-i386 and non-alpha, or non gcc,
implement BREAKPOINT() as raise (5 /* SIGTRAP */);
* glib.h: provide user-definable switch G_IMPLEMENT_INLINES,
to turn on compilation of inline function implementations provided
in header files with extern linkage.
wrap inline function implementations into ifdef __G_UTILS_C__, so we
really only compile them for gutils.c and not also into arbitrary user
code that wants to make use of G_IMPLEMENT_INLINES.
adjusted comment apropriately.
* gutils.c: to turn on compilation of inline functions, provide
#define G_IMPLEMENT_INLINES 1 and #define __G_UTILS_C__.
Owen Taylor [Thu, 7 Sep 2000 16:36:56 +0000 (16:36 +0000)]
Some further makefile improvement.
Thu Sep 7 12:35:35 2000 Owen Taylor <otaylor@redhat.com>
* Some further makefile improvement.
* Restore all the docs that mysteriously vanished earlier.
Havoc Pennington [Wed, 6 Sep 2000 23:30:21 +0000 (23:30 +0000)]
docs
2000-09-06 Havoc Pennington <hp@redhat.com>
* gerror.c: docs
* docs/reference/glib/tmpl/error_reporting.sgml: docs
Owen Taylor [Wed, 6 Sep 2000 15:01:07 +0000 (15:01 +0000)]
Improve separation of generic non-generic parts and dependencies.
Wed Sep 6 10:59:45 2000 Owen Taylor <otaylor@redhat.com>
* gobject/Makefile.am glib/Makefile.am: Improve
separation of generic non-generic parts and dependencies.
Owen Taylor [Wed, 6 Sep 2000 14:42:13 +0000 (14:42 +0000)]
Some inline docs fixes.
Wed Sep 6 10:28:34 2000 Owen Taylor <otaylor@redhat.com>
* guniprop.c gunicode.h gutf8.c: Some inline docs fixes.
Sebastian Wilhelmi [Wed, 6 Sep 2000 13:56:17 +0000 (13:56 +0000)]
s/G_MICROSEC/G_USEC_PER_SEC/
2000-09-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, gtimer.c, tests/thread-test.c:
s/G_MICROSEC/G_USEC_PER_SEC/
* gthread/gthread-posix.c, gthread/gthread-solaris.c:
s/G_MICROSEC/G_USEC_PER_SEC/ and s/G_NANOSEC/G_NSEC_PER_SEC/
Sebastian Wilhelmi [Wed, 6 Sep 2000 08:02:56 +0000 (08:02 +0000)]
Removed G_G{U}{SHORT|INT|LONG}_FORMAT from glib.h, as they are really
2000-09-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Removed G_G{U}{SHORT|INT|LONG}_FORMAT from glib.h, as
they are really superfluous.
Owen Taylor [Wed, 6 Sep 2000 04:32:45 +0000 (04:32 +0000)]
Split GObject docs away from the remainder of the docs.
Wed Sep 6 00:30:09 2000 Owen Taylor <otaylor@redhat.com>
* glib/* gobject/*: Split GObject docs away from
the remainder of the docs.
* glib/Makefile.am gobject/Makefile.am: Rework
to have reasonable dependencies. (No dependencies
on the files actually in the source directories,
so to get it going, you have to do 'make scan',
but after that, things should work OK.)
Owen Taylor [Wed, 6 Sep 2000 00:17:41 +0000 (00:17 +0000)]
Add gtk-doc checks for newly added docs/reference/ subdir.
Tue Sep 5 20:16:27 2000 Owen Taylor <otaylor@redhat.com>
* configure.in docs/Makefile.am: Add gtk-doc checks
for newly added docs/reference/ subdir.
Owen Taylor [Wed, 6 Sep 2000 00:04:49 +0000 (00:04 +0000)]
head -n 4 ChangeLog
Sebastian Wilhelmi [Tue, 5 Sep 2000 08:58:20 +0000 (08:58 +0000)]
Don't use a G_LOCK, as it isn't necessary.
2000-09-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gthread.c (g_thread_error_quark): Don't use a G_LOCK, as it
isn't necessary.
Sebastian Wilhelmi [Fri, 1 Sep 2000 13:58:25 +0000 (13:58 +0000)]
.cvsignore updates
.cvsignore updates
Sebastian Wilhelmi [Fri, 1 Sep 2000 13:45:43 +0000 (13:45 +0000)]
Use g_return_val_if_fail instead of g_return_if_fail, as the function now
2000-09-01 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gstring.c (g_string_free): Use g_return_val_if_fail instead of
g_return_if_fail, as the function now is supposed to return
something.
Sebastian Wilhelmi [Fri, 1 Sep 2000 13:33:04 +0000 (13:33 +0000)]
Use GError to report errors as well.
2000-09-01 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gthread-solaris.c (g_thread_create_solaris_impl): Use GError to
report errors as well.
Sebastian Wilhelmi [Fri, 1 Sep 2000 13:03:23 +0000 (13:03 +0000)]
Include gerror.h before it is used for some g_thread_* functions.
2000-09-01 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Include gerror.h before it is used for some g_thread_*
functions.
* gthread.c, gthreadpool.c, glib.h: Enable error reporting for
thread creation, namly for g_thread_create, g_thread_pool_new,
g_thread_pool_push and g_thread_pool_set_max_threads.
* tests/thread-test.c, tests/threadpool-test.c: Adapted
accordingly.
* gthread-posix.c (g_thread_create_posix_impl): Use GError to
report errors.
Sebastian Wilhelmi [Fri, 1 Sep 2000 12:47:42 +0000 (12:47 +0000)]
Added function g_propagte_error to hand over local errors to the calling
2000-09-01 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gerror.c, gerror.h (g_propagte_error): Added function
g_propagte_error to hand over local errors to the calling
function.
Tor Lillqvist [Thu, 31 Aug 2000 22:47:24 +0000 (22:47 +0000)]
glib.h glib.def New function, to make a GPollFD from a GIOChannel. Creates
2000-08-31 Tor Lillqvist <tml@iki.fi>
* glib.h
* glib.def
* giowin32.c (g_io_channel_win32_make_pollfd): New function, to
make a GPollFD from a GIOChannel. Creates the events and starts
the reader thread if necessary.
Tor Lillqvist [Thu, 31 Aug 2000 21:58:59 +0000 (21:58 +0000)]
glib.h No use for separate condition parameter.
2000-08-31 Tor Lillqvist <tml@iki.fi>
* glib.h
* giowin32.c (g_io_channel_win32_poll): No use for separate
condition parameter.
Tor Lillqvist [Thu, 31 Aug 2000 20:56:42 +0000 (20:56 +0000)]
Keep the check for non-NULL parameter.
Tor Lillqvist [Thu, 31 Aug 2000 20:55:16 +0000 (20:55 +0000)]
Simplify, use GetSystemTimeAsFileTime().
2000-08-31 Tor Lillqvist <tml@iki.fi>
* gmain.c (g_get_current_time): (Win32): Simplify, use
GetSystemTimeAsFileTime().
Tor Lillqvist [Sun, 27 Aug 2000 15:33:15 +0000 (15:33 +0000)]
Hmm, the parameter to g_io_channel_win32_poll() should be a GPollFD array,
2000-08-27 Tor Lillqvist <tml@iki.fi>
Hmm, the parameter to g_io_channel_win32_poll() should be
a GPollFD array, not GIOChannel. That way the caller can know which
channels cause the callback.
Tor Lillqvist [Sun, 27 Aug 2000 10:53:36 +0000 (10:53 +0000)]
New function, otherwise like g_io_channel_win32_wait_for_condition(), but
2000-08-27 Tor Lillqvist <tml@iki.fi>
* giowin32.c (g_io_channel_win32_poll): New function, otherwise
like g_io_channel_win32_wait_for_condition(), but accept several
GIOChannels.
(g_io_channel_win32_wait_for_condition): Call
g_io_channel_win32_poll().
* glib.h: Declare g_io_channel_win32_poll().
* gwin32.c (g_win32_error_message): Don't believe return value
from FormatMessage.
Elliot Lee [Fri, 25 Aug 2000 22:45:48 +0000 (22:45 +0000)]
Mark the following functions G_GNUC_CONST (to allow betteroptimization)
2000-08-25 Elliot Lee <sopwith@redhat.com>
* glib.h, gunicode.h, gmodule/gmodule.h:
Mark the following functions G_GNUC_CONST (to allow
betteroptimization) because their results are a function of only their parameters:
g_int_hash, g_int_equal, g_direct_hash, g_direct_equal, g_quark_to_string,
g_date_is_leap_year, g_date_days_in_month, g_date_monday_weeks_in_year,
g_date_sunday_weeks_in_year, g_spaced_primes_closest, g_unichar_is*,
g_unichar_to*, g_unichar_*digit_value, g_unichar_type
Elliot Lee [Mon, 21 Aug 2000 23:06:11 +0000 (23:06 +0000)]
Fix inclusion of config.h
Fix inclusion of config.h
Owen Taylor [Mon, 21 Aug 2000 18:46:52 +0000 (18:46 +0000)]
Fix a couple of trivial bugs that were causing warnings.
Mon Aug 21 14:46:23 2000 Owen Taylor <otaylor@redhat.com>
* tests/gio-test.c: Fix a couple of trivial bugs that
were causing warnings.
Mon Aug 21 14:39:36 2000 Owen Taylor <otaylor@redhat.com>
* glib.h: Use C99 varargs macros where possible
(check __STDC_VERSION__), otherwise, on gcc, use an alternate
form of gcc varargs which is more likely
to be supported going forward. (Based on some code
from Raja Harinath)
Darin Adler [Thu, 17 Aug 2000 21:37:18 +0000 (21:37 +0000)]
Return the data left behind. Return the data left behind.
* glib.h:
* garray.c: (g_array_free), (g_ptr_array_free),
(g_byte_array_free): Return the data left behind.
* gstring.c: (g_string_free): Return the data left behind.
Changed the free calls that leave data behind so they
return a pointer to the left-behind data, NULL if told not
to leave anything behind. This makes these calls easier
to use correctly, without any incompatible API change for
callers that don't know about the return value. Of course,
it would be even clearer if the free calls weren't dual-purpose
in the first place.
Tor Lillqvist [Fri, 11 Aug 2000 21:36:00 +0000 (21:36 +0000)]
Some indentation and spacing fixes. Add some more logging.
2000-08-12 Tor Lillqvist <tml@iki.fi>
* giowin32.c: Some indentation and spacing fixes. Add some more
logging.
(g_io_win32_add_watch): New function, with common code from
g_io_win32_fd_add_watch and g_io_win32_sock_add_watch. Don't start
more than one reader thread for a GIOChannel. We should obviously
have just one reader thread reading a file descriptor or socket.
Havoc Pennington [Fri, 11 Aug 2000 03:29:19 +0000 (03:29 +0000)]
don't duplicate glib Cflags
2000-08-10 Havoc Pennington <hp@redhat.com>
* gthread-2.0.pc.in (Cflags): don't duplicate glib Cflags
* gmodule-2.0.pc.in (Cflags): don't duplicate glib Cflags
* gobject-2.0.pc.in (Cflags): don't duplicate Cflags from glib
itself
Havoc Pennington [Fri, 11 Aug 2000 03:23:08 +0000 (03:23 +0000)]
Look in glib-2.0/include for glibconfig.h
2000-08-10 Havoc Pennington <hp@redhat.com>
* glib-2.0.pc.in (Cflags): Look in glib-2.0/include for
glibconfig.h
Tor Lillqvist [Sun, 6 Aug 2000 23:33:29 +0000 (23:33 +0000)]
New function, that calls g_source_remove(). Check return value of
2000-08-07 Tor Lillqvist <tml@iki.fi>
* tests/gio-test.c (shutdown_source): New function, that calls
g_source_remove(). Check return value of g_source_remove(), and
decrement running subprocess counter only if g_source_remove()
actually did remove the source.
(recv_message): Call shutdown_source() on EOF condition. Return
FALSE on G_IO_HUP and G_IO_ERR condition. Fix printf format typo.
Tim Janik [Sun, 6 Aug 2000 18:09:32 +0000 (18:09 +0000)]
keep *last updated while running through the domain list, so we don't
Sun Aug 6 20:06:02 2000 Tim Janik <timj@gtk.org>
* gmessages.c (g_log_domain_check_free): keep *last updated while
running through the domain list, so we don't screw up the removal,
patch provided by Gady Kozma <gadykozma@hotmail.com>.
Sun Aug 6 20:03:41 2000 Tim Janik <timj@gtk.org>
* gmessages.c (g_log_remove_handler): keep *last updated while running
through the handler list, so we don't screw up the removal.
Owen Taylor [Mon, 31 Jul 2000 18:52:11 +0000 (18:52 +0000)]
Fix stray character
Sun Jul 30 16:54:13 2000 Owen Taylor <otaylor@redhat.com>
* gunicode.h: Fix stray character
* gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
which case we just compute the length.
Havoc Pennington [Mon, 31 Jul 2000 17:13:55 +0000 (17:13 +0000)]
forgot to add .pc.in to EXTRA_DIST
2000-07-31 Havoc Pennington <hp@redhat.com>
* Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
Havoc Pennington [Mon, 31 Jul 2000 17:10:33 +0000 (17:10 +0000)]
pkg-config data files
2000-07-31 Havoc Pennington <hp@redhat.com>
* glib-2.0.pc.in, gobject-2.0.pc.in, gmodule-2.0.pc.in,
gobject-2.0.pc.in: pkg-config data files
* Makefile.am: Install/dist the .pc files
* configure.in: Output the .pc files
Tor Lillqvist [Mon, 31 Jul 2000 15:12:21 +0000 (15:12 +0000)]
Drop a few unused variables.
Tor Lillqvist [Mon, 31 Jul 2000 15:11:02 +0000 (15:11 +0000)]
The code didn't compile (must have been sleepy when committing). "return"
2000-07-31 Tor Lillqvist <tml@iki.fi>
* giowin32.c (buffer_read): The code didn't compile (must
have been sleepy when committing). "return" instead of "break"
(g_io_win32_fd_add_watch): Cannot check if the file descriptor is
readable by calling ReadFile to read zero bytes. ReadFile blocks
on NT even if trying to read nothing at all. So, don't check if
file descriptor is readable; assume this function isn't called
otherwise.