summaryrefslogtreecommitdiff
path: root/gmodule/gmodule-beos.c
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>2004-02-20 01:41:00 +0000
committerTim Janik <timj@src.gnome.org>2004-02-20 01:41:00 +0000
commitdefca980e4c4c899f18d8a8c17b629306abfe41c (patch)
tree3f742451c610641276d12c3a7da28a5e8c23f0f8 /gmodule/gmodule-beos.c
parentfb464bde99ee62a4c1f36eaa05426be151a37406 (diff)
downloadglib-defca980e4c4c899f18d8a8c17b629306abfe41c.tar.gz
applied patch from David Schleef <ds@schleef.org> which implements a
Fri Feb 20 02:39:03 2004 Tim Janik <timj@gtk.org> * applied patch from David Schleef <ds@schleef.org> which implements a G_MODULE_BIND_LOCAL flag to g_module_open() to disable global symbol registration.
Diffstat (limited to 'gmodule/gmodule-beos.c')
-rw-r--r--gmodule/gmodule-beos.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gmodule/gmodule-beos.c b/gmodule/gmodule-beos.c
index edd6b893f..159bc985a 100644
--- a/gmodule/gmodule-beos.c
+++ b/gmodule/gmodule-beos.c
@@ -48,6 +48,9 @@
* different image_id's. While this means that we don't have to worry about
* reference counts, it could lead to problems in the future....
* richard.
+ *
+ * load_add_on() apparently does not support lazy or local binding. Need
+ * to confirm that the actual behavior is non-lazy/local. --ds
*/
#include <Errors.h>
@@ -56,7 +59,8 @@
/* --- functions --- */
static gpointer
_g_module_open (const gchar *file_name,
- gboolean bind_lazy)
+ gboolean bind_lazy,
+ gboolean bind_local)
{
image_id handle;