]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/dlfcn.h (RTLD_LOCAL): Define.
authorCorinna Vinschen <corinna@vinschen.de>
Mon, 9 Aug 2010 07:48:24 +0000 (07:48 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Mon, 9 Aug 2010 07:48:24 +0000 (07:48 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/include/dlfcn.h

index b58eef2bc83cdd2db4596ad040f3bcc68b3d6da0..b36dc8067b28e0c977da104dfc38efdf09bb9280 100644 (file)
@@ -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.
index 2cf88e2d31eb8e671b3e6c09e8945fdf77e8a8e6..56a7fb4cb7621448d8dfb91b2c6da86d48312599 100644 (file)
@@ -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 */
This page took 0.033526 seconds and 5 git commands to generate.