platform/upstream/glib.git
12 years agoGDBusWorker: as a precaution, access 'stopped' boolean atomically
Simon McVittie [Mon, 12 Sep 2011 17:26:45 +0000 (18:26 +0100)]
GDBusWorker: as a precaution, access 'stopped' boolean atomically

This member is written in _g_dbus_worker_stop from arbitrary threads, and
read by the worker thread, so it should be accessed atomically.

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=651268
Bug-NB: NB#271520
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Signed-off-by: David Zeuthen <davidz@redhat.com>
12 years agoRegression test for closing a stream, slowly, while a message is queued
Simon McVittie [Mon, 12 Sep 2011 17:24:24 +0000 (18:24 +0100)]
Regression test for closing a stream, slowly, while a message is queued

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=651268
Bug-NB: NB#271520
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Signed-off-by: David Zeuthen <davidz@redhat.com>
12 years agoGDBusWorker: annotate more functions with lock/pending state
Simon McVittie [Thu, 8 Sep 2011 16:21:02 +0000 (17:21 +0100)]
GDBusWorker: annotate more functions with lock/pending state

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=651268
Bug-NB: NB#271520
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Signed-off-by: David Zeuthen <davidz@redhat.com>
12 years agoGDBusConnection: delegate to the worker to close the stream
Simon McVittie [Tue, 13 Sep 2011 16:31:27 +0000 (17:31 +0100)]
GDBusConnection: delegate to the worker to close the stream

We can't safely close the output part of the I/O stream until any
pending write or flush has been completed. In the worst case, this could
lead to an assertion failure in the worker (when the close wins the
race) or not closing the stream at all (when the write wins the race).

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=651268
Bug-NB: NB#271520
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Signed-off-by: David Zeuthen <davidz@redhat.com>
12 years agoGDBusWorker: combine num_writes_pending with flush_pending
Simon McVittie [Tue, 13 Sep 2011 16:37:33 +0000 (17:37 +0100)]
GDBusWorker: combine num_writes_pending with flush_pending

num_writes_pending was a counter, but it only took values 0 or 1, so make
it a boolean: it would never make sense to be trying to write out two
messages at the same time (they'd get interleaved).

Similarly, we can never be writing and flushing at the same time (that'd
mean we were flushing halfway through a message, which would be pointless)
so combine it with flush_pending too, calling the result output_pending.

Also assert that it takes the expected value whenever we change it,
and document the locking discipline used for it, including a subtle
case in write_message_in_idle_cb where it's not obvious at first glance
why we don't need the lock.

(Having the combined boolean at the top of the block of write-related
struct members improves struct packing on 64-bit platforms, by packing
read_num_ancillary_messages and output_pending into one word.)

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=651268
Bug-NB: NB#271520
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Signed-off-by: David Zeuthen <davidz@redhat.com>
12 years agoDisable two GDBus tests
Ryan Lortie [Fri, 16 Sep 2011 15:06:50 +0000 (11:06 -0400)]
Disable two GDBus tests

These tests try to use GMainContext across fork() which now fails a lot
more violently than it used to.

See https://bugzilla.gnome.org/show_bug.cgi?id=658999 for information.

12 years agoRevert "Add g_memory_input_stream_new_from_data_full/add_data_full() apis"
Murray Cumming [Fri, 16 Sep 2011 14:09:56 +0000 (16:09 +0200)]
Revert "Add g_memory_input_stream_new_from_data_full/add_data_full() apis"

I'm not sure that this API is right now that I try to use it.

This reverts commit 42738469d15585791bd5613356c47bcc2c413c20.

12 years agoAdd g_memory_input_stream_new_from_data_full/add_data_full() apis
Tristan Van Berkom [Fri, 16 Sep 2011 11:46:01 +0000 (13:46 +0200)]
Add g_memory_input_stream_new_from_data_full/add_data_full() apis

Add an extra state pointer and an extra GDestroyNotify function
to the 'Chunk' definition... allowing bindings to attach some extra
state to memory chunks (to get memory management correctly from
language bindings).
Bug #589887

12 years agoFix docs
Behdad Esfahbod [Thu, 15 Sep 2011 20:51:22 +0000 (16:51 -0400)]
Fix docs

12 years agoGApplication: don't create a mainloop
Ryan Lortie [Wed, 14 Sep 2011 01:57:30 +0000 (21:57 -0400)]
GApplication: don't create a mainloop

Just iterate the main context directly.  Also: avoid calling the virtual
functions for mainloops.

https://bugzilla.gnome.org/show_bug.cgi?id=658805

12 years agoGApplication test: fix testcase to avoid fork()
Ryan Lortie [Wed, 14 Sep 2011 15:06:02 +0000 (11:06 -0400)]
GApplication test: fix testcase to avoid fork()

The GApplication test case tried to fork() while using GMainLoop,
causing problems.  Avoid doing that by splitting the child process into
a separate program and spawning it in the usual way.

https://bugzilla.gnome.org/show_bug.cgi?id=658999

12 years agomainloop: detect fork() and abort
Ryan Lortie [Tue, 13 Sep 2011 23:56:22 +0000 (19:56 -0400)]
mainloop: detect fork() and abort

Abort if the child process returns to the mainloop after a fork().

https://bugzilla.gnome.org/show_bug.cgi?id=658999

12 years agoGApplication: add chain-up checks
Ryan Lortie [Wed, 14 Sep 2011 18:00:08 +0000 (14:00 -0400)]
GApplication: add chain-up checks

Make sure ::startup and ::shutdown are being chained up.

12 years agoGApplication: introduce ::shutdown
Brian Koning [Wed, 14 Sep 2011 17:42:35 +0000 (13:42 -0400)]
GApplication: introduce ::shutdown

Introduce ::shutdown as a dual to ::startup.

https://bugzilla.gnome.org/show_bug.cgi?id=643934

12 years agoUpdated Russian translation
Yuri Myasoedov [Wed, 14 Sep 2011 17:26:49 +0000 (21:26 +0400)]
Updated Russian translation

12 years agogdbus-codegen: Fix segfault when remote property is invalidated
Tomas Bzatek [Wed, 14 Sep 2011 17:02:01 +0000 (19:02 +0200)]
gdbus-codegen: Fix segfault when remote property is invalidated

The 'key' variable is no longer valid outside the cycle, owned and
probably already freed by GVariant. This causes apps to segfault
when proxy is constructed and a property on remote d-bus service
changes (actually is invalidated). Looks like a typo anyway.

https://bugzilla.gnome.org/show_bug.cgi?id=659070

12 years agoUpdated Brazilian Portuguese translation.
Og B. Maciel [Wed, 14 Sep 2011 13:14:02 +0000 (09:14 -0400)]
Updated Brazilian Portuguese translation.

12 years agoFix the description for g_app_info_get_icon()
Richard Hughes [Tue, 13 Sep 2011 15:38:40 +0000 (16:38 +0100)]
Fix the description for g_app_info_get_icon()

It can return NULL when there is no default icon.

12 years agoUpdated Tamil Translations
I Felix [Tue, 13 Sep 2011 10:10:27 +0000 (15:40 +0530)]
Updated Tamil Translations

12 years agoUpdated Tamil Translations
I Felix [Tue, 13 Sep 2011 10:04:22 +0000 (15:34 +0530)]
Updated Tamil Translations

12 years agoMerge remote-tracking branch 'gvdb/master'
Ryan Lortie [Mon, 12 Sep 2011 12:12:57 +0000 (08:12 -0400)]
Merge remote-tracking branch 'gvdb/master'

12 years agohashing: always use signed chars
Ryan Lortie [Mon, 12 Sep 2011 12:06:13 +0000 (08:06 -0400)]
hashing: always use signed chars

Our hashing of non-ASCII strings was undefined due to the fact that
'char' is signed on some platforms, unsigned on others.  Always use a
signed char.

Discovered by Alexander Larsson.

https://bugzilla.gnome.org/show_bug.cgi?id=658806

12 years agoGDesktopAppInfo: Improve docs
Matthias Clasen [Mon, 12 Sep 2011 05:56:45 +0000 (01:56 -0400)]
GDesktopAppInfo: Improve docs

12 years agoFix formatting in a doc comment
Matthias Clasen [Mon, 12 Sep 2011 05:49:01 +0000 (01:49 -0400)]
Fix formatting in a doc comment

12 years agoExpand mimeapps test
Matthias Clasen [Mon, 12 Sep 2011 05:46:48 +0000 (01:46 -0400)]
Expand mimeapps test

This adds a test involving both defaults.list and mimeapps.list.

12 years agoAlso check api results
Matthias Clasen [Mon, 12 Sep 2011 03:39:29 +0000 (23:39 -0400)]
Also check api results

In addition to looking at mimeapps.list, check that the default
and recommended apps returned by g_app_info api are as expected.

12 years agoRevert "Fix default setting generation in g_desktop_app_info_set_as_last_used"
Matthias Clasen [Mon, 12 Sep 2011 03:28:06 +0000 (23:28 -0400)]
Revert "Fix default setting generation in g_desktop_app_info_set_as_last_used"

This reverts commit a13f5ca4da05c3a7edaed9a70c508f63772897cb.

12 years agoAdapt tests to string changes
Matthias Clasen [Mon, 12 Sep 2011 03:25:20 +0000 (23:25 -0400)]
Adapt tests to string changes

12 years agoGType tutorial: clarify class struct initialisation
Ryan Lortie [Sun, 11 Sep 2011 19:44:39 +0000 (15:44 -0400)]
GType tutorial: clarify class struct initialisation

Make the information on how the class structure is initialised less
confusing to first-time readers.

12 years agoCosmetics
Matthias Clasen [Sun, 11 Sep 2011 17:08:14 +0000 (13:08 -0400)]
Cosmetics

Make configure --help output a little more regular, by using
AC_HELP_STRING() more consistently.

12 years agoUpdated Spanish translation
Jorge González [Sun, 11 Sep 2011 09:05:50 +0000 (11:05 +0200)]
Updated Spanish translation

12 years agoGKeyFile: Unify error messsages a bit
Matthias Clasen [Sat, 10 Sep 2011 20:09:39 +0000 (16:09 -0400)]
GKeyFile: Unify error messsages a bit

This marks a few forgotten error messages for translation, and
makes some other strings more uniform. String change!

https://bugzilla.gnome.org/show_bug.cgi?id=658715

12 years agoglib-compile-schemas: Pedantic string fixes
Matthias Clasen [Sat, 10 Sep 2011 14:36:00 +0000 (10:36 -0400)]
glib-compile-schemas: Pedantic string fixes

Replace 'can not' by 'cannot' in several places. String change!

https://bugzilla.gnome.org/show_bug.cgi?id=658207

12 years agoUpdated Hungarian translation
Gabor Kelemen [Sat, 10 Sep 2011 12:39:43 +0000 (14:39 +0200)]
Updated Hungarian translation

12 years agoFix default setting generation in g_desktop_app_info_set_as_last_used
Josselin Mouette [Sat, 10 Sep 2011 06:26:12 +0000 (08:26 +0200)]
Fix default setting generation in g_desktop_app_info_set_as_last_used

 * Do not ignore the system default
 * Do not exclude the last used being set from the default list

This fixes the default applications dialog in control-center.

https://bugzilla.gnome.org/show_bug.cgi?id=658188

12 years agoAdd some tests for mimeapps.list handling
Matthias Clasen [Sat, 10 Sep 2011 03:43:02 +0000 (23:43 -0400)]
Add some tests for mimeapps.list handling

These tests directly look at mimeapps.list to verify that
we make the expected changes to the database.

12 years agoAvoid some compiler warnings
Matthias Clasen [Sat, 10 Sep 2011 03:42:47 +0000 (23:42 -0400)]
Avoid some compiler warnings

12 years agoNix inaccurately named g_main_context_init_pipe()
Ryan Lortie [Sat, 10 Sep 2011 02:33:33 +0000 (22:33 -0400)]
Nix inaccurately named g_main_context_init_pipe()

...and fold its contents into g_main_context_new()

12 years agogmain: get rid of poll_waiting
Ryan Lortie [Sat, 10 Sep 2011 01:40:05 +0000 (21:40 -0400)]
gmain: get rid of poll_waiting

This variable, which is the cause of much grief, exists for two reasons:

  - ensuring the the wakeup pipe doesn't fill up

  - preventing the first poll() after adding a source from waking up
    immediately

The first point is no longer an issue with GWakeup.

The second point is addressed by using different logic: we only signal a
wakeup in the case that the context is currently acquired by a thread
that is not us.

As an added bonus, we can now implement g_main_context_wakeup() without
taking a lock.

https://bugzilla.gnome.org/show_bug.cgi?id=583511
https://bugzilla.gnome.org/show_bug.cgi?id=320888

12 years agoAdd macros for GSourceFunc return values
Emmanuele Bassi [Tue, 5 Oct 2010 13:01:05 +0000 (14:01 +0100)]
Add macros for GSourceFunc return values

The boolean values to be returned by a GSourceFunc are always ambiguous,
and even in case of experienced developers then can lead to confusion.

The Perl bindings for GLib have two simple constants, mapping to TRUE
and FALSE, that make the return values less confusing: G_SOURCE_CONTINUE
and G_SOURCE_REMOVE respectively.

https://bugzilla.gnome.org/show_bug.cgi?id=631413

12 years agoKeep up with the standards
Matthias Clasen [Sat, 10 Sep 2011 00:35:01 +0000 (20:35 -0400)]
Keep up with the standards

More choices, always better.

12 years agoGRegex: fix thread-unsafe initialiser code
Ryan Lortie [Fri, 9 Sep 2011 23:54:06 +0000 (19:54 -0400)]
GRegex: fix thread-unsafe initialiser code

12 years agoClean up l10n threading stuff
Ryan Lortie [Fri, 9 Sep 2011 23:48:14 +0000 (19:48 -0400)]
Clean up l10n threading stuff

Remove the explicit thread initialisation functions for g_get_charset(),
g_get_filename_charsets() and g_get_language_names().

Add a lock around one remaining case of access to libcharset (the other
2 cases already have the lock).

Do a proper g_once_init_enter() style initialisation for the GLib
gettext functions.

https://bugzilla.gnome.org/show_bug.cgi?id=658683

12 years agoglib-private: #include <glib.h>
Ryan Lortie [Fri, 9 Sep 2011 20:05:55 +0000 (16:05 -0400)]
glib-private: #include <glib.h>

This is really our only choice if we don't want to annoy the
single-include checking when we use this from inside of gio.

12 years agoDrop long-removed atomic thread init from header
Ryan Lortie [Fri, 9 Sep 2011 19:47:01 +0000 (15:47 -0400)]
Drop long-removed atomic thread init from header

12 years agoRemove now-useless glibprivate.h
Ryan Lortie [Fri, 9 Sep 2011 19:21:07 +0000 (15:21 -0400)]
Remove now-useless glibprivate.h

The only symbol in glibprivate.h was moved to glib-private.h.

12 years agoglib worker: move to glib-private framework
Ryan Lortie [Fri, 9 Sep 2011 18:30:25 +0000 (14:30 -0400)]
glib worker: move to glib-private framework

Remove the private glib_get_worker_context() symbol and move it over to
using the glib-private stuff like GWakeup is doing.

https://bugzilla.gnome.org/show_bug.cgi?id=657992

12 years agogwakeup.h: add missing header for GPollFD
Ryan Lortie [Fri, 9 Sep 2011 18:30:01 +0000 (14:30 -0400)]
gwakeup.h: add missing header for GPollFD

12 years agoAdd glib__private__() API to share between glib,gio; port GWakeup to it
Colin Walters [Thu, 1 Sep 2011 18:32:11 +0000 (14:32 -0400)]
Add glib__private__() API to share between glib,gio; port GWakeup to it

Historically we've added random symbols to the public API with warnings
that they're private; examples are:

glib_gettext(), glib_pgettext()
g_thread_functions_for_glib_use, g_thread_use_default_impl, etc.

And we almost added "GWakeup" to public API just to share between glib and
gio.

This new glib__private__() API exports a hidden vtable, and adds a macro
GLIB_PRIVATE_CALL() that makes it generally convenient to use.

This adds an extremely tiny cost for the double indirection; but it has
the benefit that we don't need to either:

1) compile the code into both glib and gio (like GWakeup), with the
   inefficiency that implies.
2) Export a "do not use this" symbol; the serious problem with this is
   that someone CAN use it pretty easily.  Particularly if we document
   it.  It's far, far harder to peek into a structure without a public
   header file.

https://bugzilla.gnome.org/show_bug.cgi?id=657992

12 years agoGMainLoop: remove wall clock time cache
Ryan Lortie [Tue, 30 Aug 2011 17:32:58 +0000 (13:32 -0400)]
GMainLoop: remove wall clock time cache

Since GMainLoop is now purely monotonic, it really doesn't make sense to
cache the wallclock time just for the sake of making a deprecated call
more efficient.

12 years agogtester: Remove SIGCHLD race workarounds
Ryan Lortie [Thu, 1 Sep 2011 03:02:03 +0000 (23:02 -0400)]
gtester: Remove SIGCHLD race workarounds

With the GMainLoop changes, gtester should now be race-free.

12 years agoModify child and signal sources to use worker
Ryan Lortie [Thu, 1 Sep 2011 02:58:26 +0000 (22:58 -0400)]
Modify child and signal sources to use worker

12 years agoGMain: simplify logic for g_wakeup_acknowledge()
Ryan Lortie [Thu, 1 Sep 2011 02:07:02 +0000 (22:07 -0400)]
GMain: simplify logic for g_wakeup_acknowledge()

Instead of messing around with context->poll_waiting, just look at the
GPollFD to see if the GWakeup needs to be acknowledged.

12 years agoGMainLoop: remove single-threaded case
Ryan Lortie [Wed, 31 Aug 2011 22:33:32 +0000 (18:33 -0400)]
GMainLoop: remove single-threaded case

Since we now always have thread support in libglib, we can remove the
buggy single-threaded codepath for GMainContext.

12 years agoAdd private glib_get_worker_context() API
Ryan Lortie [Wed, 31 Aug 2011 22:20:24 +0000 (18:20 -0400)]
Add private glib_get_worker_context() API

The first time this is called, this creates a GMainContext * and a
thread to run it.  Future calls return the same.  There are a lot of
places that we could use this in GLib.

12 years agoGRand: Make sure to g_thread_init_glib()
Ryan Lortie [Fri, 9 Sep 2011 17:39:22 +0000 (13:39 -0400)]
GRand: Make sure to g_thread_init_glib()

The last commit should g_thread_init_glib() before attempting to use
GOnce.

12 years agoGRand: remove setup from g_thread_init_glib
Ryan Lortie [Fri, 9 Sep 2011 17:31:21 +0000 (13:31 -0400)]
GRand: remove setup from g_thread_init_glib

Use g_once_init_enter instead.

12 years agoemufutex: remove init from g_thread_init_glib
Ryan Lortie [Fri, 9 Sep 2011 17:20:40 +0000 (13:20 -0400)]
emufutex: remove init from g_thread_init_glib

Use a GStaticMutex instead.

12 years agowin32: remove version init from g_thread_init_glib
Ryan Lortie [Fri, 9 Sep 2011 17:15:17 +0000 (13:15 -0400)]
win32: remove version init from g_thread_init_glib

Instead, make this use g_once_init_enter() in the usual way.

12 years agomake g_thread_init_glib() idempotent
Ryan Lortie [Wed, 31 Aug 2011 22:07:55 +0000 (18:07 -0400)]
make g_thread_init_glib() idempotent

12 years agoMove the GThread implementations to glib/
Ryan Lortie [Wed, 31 Aug 2011 22:00:03 +0000 (18:00 -0400)]
Move the GThread implementations to glib/

We can now get threads initialised from inside of libglib by calling
g_thread_init_glib().

12 years agoinvert gthread-impl includes
Ryan Lortie [Wed, 31 Aug 2011 21:40:01 +0000 (17:40 -0400)]
invert gthread-impl includes

configure.ac defined G_THREAD_SOURCE and gthread-impl would #include it.

Instead, since we only have two thread implementations now, and since we
always use the Windows one only on Windows, move the logic to the
Makefile, predicated on 'if OS_WIN32'.  Then have the chosen backend do
the #include "gthread-impl.c" from there.

Remove the G_THREAD_SOURCE define from configure.ac.

12 years agowin32 threads: assume TryEnterCriticalSection
Ryan Lortie [Wed, 31 Aug 2011 21:18:43 +0000 (17:18 -0400)]
win32 threads: assume TryEnterCriticalSection

Remove the dynamic lookup for TryEnterCriticalSection, which has existed
since Windows 2000.

12 years agoStop using HAVE_G_THREAD_IMPL_INIT
Ryan Lortie [Wed, 31 Aug 2011 21:02:21 +0000 (17:02 -0400)]
Stop using HAVE_G_THREAD_IMPL_INIT

Just always call the init function.

12 years agoMove thread priority translation into the backends
Ryan Lortie [Wed, 31 Aug 2011 20:30:04 +0000 (16:30 -0400)]
Move thread priority translation into the backends

The translation of GLib priorities into the thread priorities of
different operating systems belongs in the implementation -- not
half-way in the front end.

12 years agoRemove useless macros from when we supported DCE
Ryan Lortie [Wed, 31 Aug 2011 20:46:32 +0000 (16:46 -0400)]
Remove useless macros from when we supported DCE

These are non-ops now, and easily replaced.

12 years agoRemove support for DCE threads
Ryan Lortie [Wed, 31 Aug 2011 20:41:24 +0000 (16:41 -0400)]
Remove support for DCE threads

12 years agoRemove support for custom thread implementations
Ryan Lortie [Wed, 31 Aug 2011 20:10:55 +0000 (16:10 -0400)]
Remove support for custom thread implementations

12 years agoRemove the dead 'none' thread implementation
Ryan Lortie [Wed, 31 Aug 2011 20:03:22 +0000 (16:03 -0400)]
Remove the dead 'none' thread implementation

12 years agoGThread: remove errorcheck mutex support
Ryan Lortie [Wed, 31 Aug 2011 20:01:09 +0000 (16:01 -0400)]
GThread: remove errorcheck mutex support

This can only possibly work if we call g_thread_init(), which we are
moving away from.

12 years agogthread: remove some unused forward declarations
Ryan Lortie [Wed, 31 Aug 2011 19:53:36 +0000 (15:53 -0400)]
gthread: remove some unused forward declarations

12 years agoDeprecated (undocumented) g_thread_gettime
Ryan Lortie [Wed, 31 Aug 2011 19:49:35 +0000 (15:49 -0400)]
Deprecated (undocumented) g_thread_gettime

g_thread_gettime() is an undocumented public function pointer that
points to a function that returns the monotonic time in nanoseconds.
g_get_monotonic_time() does the same in microseconds, so it can be used
instead.

GLib had one internal user in GFileMonitor that only cared about
millisecond accuracy; it has been ported to g_get_monotonic_time().

12 years agoUpdate building docs to mention mandatory threads
Ryan Lortie [Wed, 31 Aug 2011 20:43:15 +0000 (16:43 -0400)]
Update building docs to mention mandatory threads

The docs used to say thread support was optional -- it's mandatory now.

12 years agoRemove !g_thread_supported() codepaths in gio
Dan Winship [Wed, 31 Aug 2011 18:33:33 +0000 (14:33 -0400)]
Remove !g_thread_supported() codepaths in gio

In particular, remove the libasyncns import, which was only used by
GUnixResolver, which is only used when threads are not available.
Likewise remove GWin32Resolver, and the hacky broken non-threaded
parts of GIOScheduler.

https://bugzilla.gnome.org/show_bug.cgi?id=616754

12 years agoRevert "GIOSchedulerJob: Improve struct packing"
Ryan Lortie [Wed, 31 Aug 2011 18:30:11 +0000 (14:30 -0400)]
Revert "GIOSchedulerJob: Improve struct packing"

This reverts commit a2094d5e564433ed3a4398afeacce80519bbda44.

https://bugzilla.gnome.org/show_bug.cgi?id=616754

12 years agoMake threads mandatory
Dan Winship [Wed, 31 Aug 2011 18:01:45 +0000 (14:01 -0400)]
Make threads mandatory

G_THREADS_ENABLED still exists, but is always defined. It is still
possible to use libglib without threads, but gobject (and everything
above it) is now guaranteed to be using threads (as, in fact, it was
before, since it was accidentally impossible to compile with
--disable-threads).

https://bugzilla.gnome.org/show_bug.cgi?id=616754

12 years agoFix spelling of G_IO_FLAG_IS_WRITEABLE
David Schleef [Sun, 21 Aug 2011 21:54:39 +0000 (14:54 -0700)]
Fix spelling of G_IO_FLAG_IS_WRITEABLE

Fixes #657045.

12 years agog_key_file_parse_value_as_integer: Integers can have trailing whitespaces or tabs
Kushal Das [Fri, 2 Sep 2011 06:45:21 +0000 (12:15 +0530)]
g_key_file_parse_value_as_integer: Integers can have trailing whitespaces or tabs

Now it can parse integer values with trailing whitespaces or tabs before CR.
Using g_ascii_isspace() as suggested.

https://bugzilla.gnome.org/show_bug.cgi?id=653987

12 years agoUpdated Polish translation
Piotr Drąg [Thu, 8 Sep 2011 19:07:54 +0000 (21:07 +0200)]
Updated Polish translation

12 years agoUpdated Polish translation
Piotr Drąg [Thu, 8 Sep 2011 18:44:03 +0000 (20:44 +0200)]
Updated Polish translation

12 years agosimpleaction: Fix documentation of :enabled
Damien Lespiau [Thu, 8 Sep 2011 13:25:41 +0000 (14:25 +0100)]
simpleaction: Fix documentation of :enabled

An over-zealous sed, most likely, transformed g_action_.*() into
g_simple_action.*().

https://bugzilla.gnome.org/show_bug.cgi?id=658558

12 years agoUpdate French translation
Alexandre Franke [Wed, 7 Sep 2011 09:43:36 +0000 (11:43 +0200)]
Update French translation

12 years agobgo#640212 - Replace "error stating file" with friendlier messages
Federico Mena Quintero [Thu, 8 Sep 2011 14:11:56 +0000 (09:11 -0500)]
bgo#640212 - Replace "error stating file" with friendlier messages

Non-technical users won't know that "stating" refers to stat(2), so we
just use "error when getting information" now.

Signed-off-by: Federico Mena Quintero <federico@gnome.org>
12 years agoUpdated British English translation
Bruce Cowan [Wed, 7 Sep 2011 15:58:57 +0000 (16:58 +0100)]
Updated British English translation

12 years agoUpdated Italian translation
Luca Ferretti [Tue, 6 Sep 2011 22:33:39 +0000 (00:33 +0200)]
Updated Italian translation

12 years agoUpdated Belarusian translation.
Ihar Hrachyshka [Tue, 6 Sep 2011 22:29:04 +0000 (01:29 +0300)]
Updated Belarusian translation.

12 years agoAdded Norwegian bokmål translation
Kjartan Maraas [Tue, 6 Sep 2011 19:49:06 +0000 (21:49 +0200)]
Added Norwegian bokmål translation

12 years agoGSettingsBackend: emit changes to correct thread
Ryan Lortie [Tue, 6 Sep 2011 18:01:52 +0000 (14:01 -0400)]
GSettingsBackend: emit changes to correct thread

When g_settings_apply() is called on a delayed settings backend and
there is a D-Bus error when communicating with dconf-service, recent
versions of the dconf GSettingsBackend call a function in GLib that
improperly delivered the signal directly instead of using
g_main_context_invoke().

This patch fixes this function to route in the same way as the others so
that the signal is dispatched in the proper GMainContext.

12 years ago'master' is now glib 2.31.0
Ryan Lortie [Tue, 6 Sep 2011 14:55:09 +0000 (10:55 -0400)]
'master' is now glib 2.31.0

12 years agoglib 2.29.90 2.29.90
Ryan Lortie [Mon, 5 Sep 2011 14:28:54 +0000 (10:28 -0400)]
glib 2.29.90

12 years agoUpdated Indonesian translation
Andika Triwidada [Tue, 6 Sep 2011 09:50:11 +0000 (16:50 +0700)]
Updated Indonesian translation

12 years agogio docs: lots more fixes
Ryan Lortie [Tue, 6 Sep 2011 04:12:12 +0000 (00:12 -0400)]
gio docs: lots more fixes

12 years agogio docs: only include GTlsInteraction once
Ryan Lortie [Tue, 6 Sep 2011 04:01:29 +0000 (00:01 -0400)]
gio docs: only include GTlsInteraction once

It was included twice in the gio-docs.xml file.

12 years agogio docs: drop GTimeZoneMonitor from docs
Ryan Lortie [Tue, 6 Sep 2011 03:56:33 +0000 (23:56 -0400)]
gio docs: drop GTimeZoneMonitor from docs

12 years agoRemove enums from gio.types
Ryan Lortie [Tue, 6 Sep 2011 03:54:42 +0000 (23:54 -0400)]
Remove enums from gio.types

Only objects and interfaces should go in here.  If enums are in here
then gtk-doc responds by outputting two anchors for the same name (which
results in many warnings being printed).

12 years agoGDBus object manager example: update -sections.txt
Ryan Lortie [Mon, 5 Sep 2011 23:41:16 +0000 (19:41 -0400)]
GDBus object manager example: update -sections.txt

12 years agogio docs: ignore private .h files
Ryan Lortie [Mon, 5 Sep 2011 23:35:16 +0000 (19:35 -0400)]
gio docs: ignore private .h files

12 years agogio docs: don't scan subdirectories
Ryan Lortie [Mon, 5 Sep 2011 23:10:04 +0000 (19:10 -0400)]
gio docs: don't scan subdirectories

This clears up >50% of the huge warning spew from building GIO docs.

12 years agodocs fixups for glib/
Ryan Lortie [Mon, 5 Sep 2011 23:00:11 +0000 (19:00 -0400)]
docs fixups for glib/

12 years agoGObject docs: resolve broken links
Ryan Lortie [Mon, 5 Sep 2011 22:46:59 +0000 (18:46 -0400)]
GObject docs: resolve broken links

Some links were broken due to typos, because functionality was removed
in GLib 2.0 or for various other reasons.  Fix up as many of them as is
reasonable.