Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2010-08-09 11:48:24 +0400
committerCorinna Vinschen <corinna@vinschen.de>2010-08-09 11:48:24 +0400
commit99006a85e255eb93d174b1de97df6821bc321933 (patch)
tree3c9650993e487ba43855aa995f78774adf243ad1 /winsup/cygwin
parent5c9d7a42fcebbd5ad207cc9cdc707f22783beb17 (diff)
* include/dlfcn.h (RTLD_LOCAL): Define.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/include/dlfcn.h3
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index b58eef2bc..b36dc8067 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2010-08-09 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
+
+ * include/dlfcn.h (RTLD_LOCAL): Define.
+
2010-08-06 Corinna Vinschen <corinna@vinschen.de>
* include/sys/dirent.h (d_fileno): Define as d_ino.
diff --git a/winsup/cygwin/include/dlfcn.h b/winsup/cygwin/include/dlfcn.h
index 2cf88e2d3..56a7fb4cb 100644
--- a/winsup/cygwin/include/dlfcn.h
+++ b/winsup/cygwin/include/dlfcn.h
@@ -1,6 +1,6 @@
/* dlfcn.h
- Copyright 1998, 1999, 2000, 2001 Red Hat, Inc.
+ Copyright 1998, 1999, 2000, 2001, 2010 Red Hat, Inc.
This file is part of Cygwin.
@@ -31,6 +31,7 @@ extern void dlfork (int);
#define RTLD_DEFAULT NULL
/* valid values for mode argument to dlopen */
+#define RTLD_LOCAL 0 /* symbols in this dlopen'ed obj are not visible to other dlopen'ed objs */
#define RTLD_LAZY 1 /* lazy function call binding */
#define RTLD_NOW 2 /* immediate function call binding */
#define RTLD_GLOBAL 4 /* symbols in this dlopen'ed obj are visible to other dlopen'ed objs */