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:
Diffstat (limited to 'winsup/cygwin/dlfcn.cc')
-rw-r--r--winsup/cygwin/dlfcn.cc14
1 files changed, 6 insertions, 8 deletions
diff --git a/winsup/cygwin/dlfcn.cc b/winsup/cygwin/dlfcn.cc
index 3032cc454..2bc987fc1 100644
--- a/winsup/cygwin/dlfcn.cc
+++ b/winsup/cygwin/dlfcn.cc
@@ -21,15 +21,13 @@ details. */
#include "dlfcn.h"
#include "dll_init.h"
#include "cygerrno.h"
-
-#define _dl_error _reent_winsup ()->_dl_error
-#define _dl_buffer _reent_winsup ()->_dl_buffer
+#include "cygtls.h"
static void __stdcall
set_dl_error (const char *str)
{
- __small_sprintf (_dl_buffer, "%s: %E", str);
- _dl_error = 1;
+ __small_sprintf (_my_tls.locals.dl_buffer, "%s: %E", str);
+ _my_tls.locals.dl_error = 1;
}
/* Look for an executable file given the name and the environment
@@ -145,12 +143,12 @@ char *
dlerror ()
{
char *res;
- if (!_dl_error)
+ if (!_my_tls.locals.dl_error)
res = NULL;
else
{
- _dl_error = 0;
- res = _dl_buffer;
+ _my_tls.locals.dl_error = 0;
+ res = _my_tls.locals.dl_buffer;
}
return res;
}