2000-02-17 20:38:33 +01:00
|
|
|
/* dlfcn.cc
|
|
|
|
|
2011-05-11 15:25:27 +02:00
|
|
|
Copyright 1998, 2000, 2001, 2002, 2003, 2004, 2008, 2009, 2010,
|
|
|
|
2011 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-08-02 18:28:18 +02:00
|
|
|
#include "winsup.h"
|
2004-09-14 10:29:12 +02:00
|
|
|
#include <psapi.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
* devices.cc: New file.
* devices.gperf: New file.
* devices.shilka: New file.
* cygwin-gperf: New file.
* cygwin-shilka: New file.
* fhandler_fifo.cc: New file.
* fhandler_nodevice.cc : New file. Reorganize headers so that path.h precedes
fhandler.h throughout. Remove device argument and unit arguments from fhandler
constructors throughout. Remove pc arguments to fhandler functions and use
internal pc element instead, throughout. Use dev element in pc throughout.
Use major/minor elements rather than units and device numbers previously in
fhandler class. Use correct methods for fhandler file names rather than
directly accessing file name variables, throughout.
* Makefile.in (DLL_OFILES): Add devices.o, fhandler_fifo.o
* dcrt0.cc (dll_crt0_1): Call device::init.
* devices.h: Renumber devices based on more Linux-like major/minor numbers.
Add more devices. Declare standard device storage.
(device): Declare struct.
* dir.cc (opendir): Use new 'build_fh_name' to construct a fhandler_* type.
* dtable.cc (dtable::get_debugger_info): Ditto.
(cygwin_attach_handle_to_fd): Ditto.
(dtable::release): Remove special FH_SOCKET case in favor of generic
"need_fixup_before" test.
(dtable::init_std_file_from_handle): Use either build_fh_dev or build_fh_name
to build standard fhandler.
(dtable::build_fh_name): Renamed from dtable::build_fhandler_from_name. Move
out of dtable class. Don't accept a path_conv argument. Just build it here
and pass it to:
(build_fh_pc): Renamed from dtable::build_fhandler. Move out of dtable class.
Use intrinsic device type in path_conv to create new fhandler.
(build_fh_dev): Renamed from dtable::build_fhandler. Move out of dtable class.
Simplify arguments to just take new 'device' type and a name. Just return
pointer to fhandler rather than trying to insert into dtable.
(dtable::dup_worker): Accommodate above build_fh name changes.
(dtable::find_fifo): New (currently broken) function.
(handle_to_fn): Use strechr for efficiency.
* dtable.h: Reflect above build_fh name changes and argument differences.
(fhandler_base *&operator []): Return self rather than copy of self.
* fhandler.cc (fhandler_base::operator =): Use pc element to set normalized
path.
(fhandler_base::set_name): Ditto.
(fhandler_base::raw_read): Use method to access name.
(fhandler_base::write): Correctly use get_output_handle rather than get_handle.
(handler_base::device_access_denied): New function.
(fhandler_base::open): Eliminate pc argument and use pc element of
fhandler_base throughout.
(fhandler_base::fstat): Detect if device is based in filesystem and use
fstat_fs to calculate stat, if so.
(fhandler_base::fhandler_base): Eliminate handling of file names and, instead,
just free appropriate component from pc.
(fhandler_base::opendir): Remove path_conv parameter.
* fhandler.h: Remove all device flags.
(fhandler_base::pc): New element.
(fhandler_base::set_name): Change argument to path_conv.
(fhandler_base::error): New function.
(fhandler_base::exists): New function.
(fhandler_base::pc_binmode): New function.
(fhandler_base::dev): New function.
(fhandler_base::open_fs): New function.
(fhandler_base::fstat_fs): New function.
(fhandler_base::fstat_by_name): New function.
(fhandler_base::fstat_by_handle): New function.
(fhandler_base::isfifo): New function.
(fhandler_base::is_slow): New function.
(fhandler_base::is_auto_device): New function.
(fhandler_base::is_fs_special): New function.
(fhandler_base::device_access_denied): New function.
(fhandler_base::operator DWORD&): New operator.
(fhandler_base::get_name): Return normalized path from pc.
(fhandler_base::get_win32_name): Return windows path from pc.
(fhandler_base::isdevice): Renamed from is_device.
(fhandler_base::get_native_name): Return device format.
(fhandler_fifo): New class.
(fhandler_nodevice): New class.
(select_stuff::device_specific): Remove array.
(select_stuff::device_specific_pipe): New class element.
(select_stuff::device_specific_socket): New class element.
(select_stuff::device_specific_serial): New class element.
(select_stuff::select_stuff): Initialize new elements.
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Move to base class
from fhandler_disk_file.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_disk_file::open): Move most functionality into
fhandler_base::open_fs.
(fhandler_base::open_fs): New function.
(fhandler_disk_file::close): Move most functionality into
fhandler_base::close_fs.
(fhandler_base::close_fs): New function.
* fhandler_mem.cc (fhandler_dev_mem::open): Use device name in debugging
output.
* fhandler_socket.cc (fhandler_socket::set_connect_secret): Copy standard
urandom device into appropriate place.
(fhandler_socket::accept): Reflect change in fdsock return value.
* fhandler_tty.cc: See "throughouts" above.
* net.cc: Accommodate fdsock change throughout.
(fdsock): Return success or failure, accept fd argument and device argument.
* path.cc (symlink_info::major): New element.
(symlink_info::minor): New element.
(symlink_info::parse_device): Declare new function.
(fs_info::update): Accommodate changes in path_conv class.
(path_conv::fillin): Ditto.
(path_conv::return_and_clear_normalized_path): Eliminate.
(path_conv::set_normalized_path): New function.
(path_conv::path_conv): Set info in dev element. Use path_conv methods Check
for FH_FS rather than FH_BAD to indicate when to fill in filesystem stuff.
where appropriate rather than direct access. Use set_normalized_path to set
normalized path.
(windows_device_names): Eliminate.
(get_dev): Ditto.
(get_raw_device_number): Ditto.
(get_device_number): Ditto.
(win32_device_name): Call new device name parser to do most of the heavy
lifting.
(mount_info::conv_to_win32_path): Fill in dev field as appropriate.
(symlink_worker): Handle new device files.
(symlink_info::check): Ditto.
(symlink_info::parse_device): Define new function.
* path.h (executable_states): Move here from fhandler.h.
(fs_info): Rename variables to *_storage and create methods for accessing same.
(path_conv): Add dev element, remove devn and unit and adjust inline methods to
accommodate.
(set_normalized_path): Declare new function.
* pinfo.cc (_pinfo::commune_recv): Add broken support for handling fifos.
(_pinfo::commune_send): Ditto.
* pipe.cc (fhandler_pipe::close): check for existence of handle before closing
it.
(handler_pipe::create): Rename from make_pipe. Change arguments to accept
fhandler_pipe array. Accommodate fifos.
(pipe): Rework to deal with fhandler_pipe::create changes.
(_pipe): Ditto.
* select.cc: Use individual device_specific types throughout rather than
indexing with obsolete device number.
(set_bits): Use is_socket call rather than checking device number.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(conv_to_win32_path): Reflect addition of device argument.
* syscalls.cc (mknod_worker): New function.
(open): Use build_fh_name to build fhandler.
(chown_worker): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(chmod_device): New function.
(chmod): Detect if this is an 'auto' device rather than an on-filesystem device
and handle appropriately. Use chmod_device to set mode of in-filesystem
devices.
(stat_worker): Eliminate path_conv argument. Call build_fh_name to construct
fhandler. Use fh->error() rather than pc->error to detect errors in fhandler
construction.
(access_worker): New function pulled from access. Accommodate in-filesystem
devices.
(access): Use access_worker.
(fpathconf): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(mknod_worker): New function.
(mknod32): New function.
(chroot): Free normalized path -- assuming it was actually cmalloced.
* tty.cc (create_tty_master): Tweak for new device class.
(tty::common_init): Ditto.
* winsup.h (stat_worker): Remove.
(symlink_worker): Declare.
* exceptions.cc (set_process_mask): Just call sig_dispatch_pending and don't
worry about pending_signals since sig_dispatch_pending should always do the
right thing now.
(sig_handle): Reorganize SIGCONT handling to more closely conform to SUSv3.
* pinfo.h: Move __SIG enum to sigproc.h.
(PICOM_FIFO): New enum element.
(_pinfo): Remove 'thread2signal' stuff throughout class.
(_pinfo::commune_send): Make varargs.
(_pinfo::sigtodo): Eliminate.
(_pinfo::thread2signal): Ditto.
* signal.cc (kill_worker): Eliminate call to setthread2signal.
* sigproc.cc (local_sigtodo): Eliminate.
(getlocal_sigtodo): Ditto.
(sigelem): New class.
(pending_signals): New class.
(sigqueue): New variable, start of sigqueue linked list.
(sigcatch_nonmain): Eliminate.
(sigcatch_main): Eliminate.
(sigcatch_nosync): Eliminate.
(sigcomplete_nonmain): Eliminate.
(pending_signals): Eliminate.
(sig_clear): Call signal thread to clear pending signals, unless already in
signal thread.
(sigpending): Call signal thread to get pending signals.
(sig_dispatch_pending): Eliminate use of pending_signals and just check
sigqueue.
(sigproc_terminate): Eliminate all of the obsolete semaphore stuff. Close
signal pipe handle.
(sig_send): Eliminate all of the obsolete semaphore stuff and use pipe to send
signals.
(getevent): Eliminate.
(pending_signals::add): New function.
(pending_signals::del): New function.
(pending_signals::next): New function.
(wait_sig): Eliminate all of the obsolete semaphore stuff. Use pipe to
communicate and maintain a linked list of signals.
* sigproc.h: Move __SIG defines here. Add __SIGPENDING.
(sig_dispatch_pending): Remove "C" specifier.
(sig_handle): Accept a mask argument.
* thread.cc: Remove signal handling considerations throughout.
2003-09-25 02:37:18 +02:00
|
|
|
#include "path.h"
|
2001-03-05 07:28:25 +01:00
|
|
|
#include "perprocess.h"
|
2000-09-08 04:56:55 +02:00
|
|
|
#include "dlfcn.h"
|
2003-12-23 17:26:31 +01:00
|
|
|
#include "cygtls.h"
|
2008-03-11 14:35:55 +01:00
|
|
|
#include "tls_pbuf.h"
|
2011-05-11 15:25:27 +02:00
|
|
|
#include "ntdll.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
static void __stdcall
|
|
|
|
set_dl_error (const char *str)
|
|
|
|
{
|
2005-05-30 20:20:28 +02:00
|
|
|
strcpy (_my_tls.locals.dl_buffer, strerror (get_errno ()));
|
2003-12-23 17:26:31 +01:00
|
|
|
_my_tls.locals.dl_error = 1;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2000-07-16 06:34:05 +02:00
|
|
|
/* Look for an executable file given the name and the environment
|
|
|
|
variable to use for searching (eg., PATH); returns the full
|
|
|
|
pathname (static buffer) if found or NULL if not. */
|
2001-03-26 03:16:11 +02:00
|
|
|
inline const char * __stdcall
|
|
|
|
check_path_access (const char *mywinenv, const char *name, path_conv& buf)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2006-01-31 22:49:39 +01:00
|
|
|
return find_exec (name, buf, mywinenv, FE_NNF | FE_NATIVE | FE_CWD | FE_DLL);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2001-03-26 03:16:11 +02:00
|
|
|
/* Search LD_LIBRARY_PATH for dll, if it exists.
|
|
|
|
Return Windows version of given path. */
|
2009-04-16 18:17:58 +02:00
|
|
|
static bool __stdcall
|
|
|
|
get_full_path_of_dll (const char* str, path_conv &real_filename)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-03-26 03:16:11 +02:00
|
|
|
int len = strlen (str);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2009-04-16 18:17:58 +02:00
|
|
|
/* empty string? */
|
|
|
|
if (len == 0)
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return false; /* Yes. Let caller deal with it. */
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2009-04-16 18:17:58 +02:00
|
|
|
tmp_pathbuf tp;
|
|
|
|
char *name = tp.c_get ();
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-26 03:16:11 +02:00
|
|
|
strcpy (name, str); /* Put it somewhere where we can manipulate it. */
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-26 03:16:11 +02:00
|
|
|
if (isabspath (name) ||
|
2009-04-16 18:17:58 +02:00
|
|
|
(check_path_access ("LD_LIBRARY_PATH=", name, real_filename)
|
|
|
|
?: check_path_access ("/usr/lib", name, real_filename)) == NULL)
|
|
|
|
real_filename.check (name, PC_SYM_FOLLOW | PC_NOFULL | PC_NULLEMPTY);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2010-06-14 13:10:30 +02:00
|
|
|
if (!real_filename.error)
|
2009-04-16 18:17:58 +02:00
|
|
|
return true;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2010-06-14 13:10:30 +02:00
|
|
|
set_errno (real_filename.error);
|
2009-04-16 18:17:58 +02:00
|
|
|
return false;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2011-08-16 16:44:26 +02:00
|
|
|
extern "C" void *
|
|
|
|
dlopen (const char *name, int flags)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2011-08-16 16:44:26 +02:00
|
|
|
void *ret = NULL;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-26 03:16:11 +02:00
|
|
|
if (name == NULL)
|
2011-05-11 15:25:27 +02:00
|
|
|
{
|
|
|
|
ret = (void *) GetModuleHandle (NULL); /* handle for the current module */
|
|
|
|
if (!ret)
|
2011-06-06 07:02:13 +02:00
|
|
|
__seterrno ();
|
2011-05-11 15:25:27 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
else
|
|
|
|
{
|
2000-07-16 06:34:05 +02:00
|
|
|
/* handle for the named library */
|
2009-04-16 18:17:58 +02:00
|
|
|
path_conv pc;
|
2011-08-16 16:44:26 +02:00
|
|
|
if (get_full_path_of_dll (name, pc))
|
2001-03-26 03:16:11 +02:00
|
|
|
{
|
2009-04-16 18:17:58 +02:00
|
|
|
tmp_pathbuf tp;
|
|
|
|
wchar_t *path = tp.w_get ();
|
|
|
|
|
|
|
|
pc.get_wide_win32_path (path);
|
2009-11-02 15:39:08 +01:00
|
|
|
/* Check if the last path component contains a dot. If so,
|
2011-08-16 16:44:26 +02:00
|
|
|
leave the filename alone. Otherwise add a trailing dot
|
2009-11-02 15:39:08 +01:00
|
|
|
to override LoadLibrary's automatic adding of a ".dll" suffix. */
|
|
|
|
wchar_t *last_bs = wcsrchr (path, L'\\');
|
|
|
|
if (last_bs && !wcschr (last_bs, L'.'))
|
|
|
|
wcscat (last_bs, L".");
|
2009-08-13 09:35:50 +02:00
|
|
|
|
|
|
|
/* Workaround for broken DLLs built against Cygwin versions 1.7.0-49
|
|
|
|
up to 1.7.0-57. They override the cxx_malloc pointer in their
|
|
|
|
DLL initialization code even if loaded dynamically. This is a
|
|
|
|
no-no since a later dlclose lets cxx_malloc point into nirvana.
|
|
|
|
The below kludge "fixes" that by reverting the original cxx_malloc
|
|
|
|
pointer after LoadLibrary. This implies that their overrides
|
|
|
|
won't be applied; that's OK. All overrides should be present at
|
|
|
|
final link time, as Windows doesn't allow undefined references;
|
|
|
|
it would actually be wrong for a dlopen'd DLL to opportunistically
|
|
|
|
override functions in a way that wasn't known then. We're not
|
|
|
|
going to try and reproduce the full ELF dynamic loader here! */
|
|
|
|
|
|
|
|
/* Store original cxx_malloc pointer. */
|
|
|
|
struct per_process_cxx_malloc *tmp_malloc;
|
|
|
|
tmp_malloc = __cygwin_user_data.cxx_malloc;
|
|
|
|
|
2011-08-16 16:44:26 +02:00
|
|
|
if (!(flags & RTLD_NOLOAD)
|
|
|
|
|| (ret = GetModuleHandleW (path)) != NULL)
|
|
|
|
{
|
|
|
|
ret = (void *) LoadLibraryW (path);
|
|
|
|
if (ret && (flags & RTLD_NODELETE)
|
|
|
|
&& !GetModuleHandleExW (GET_MODULE_HANDLE_EX_FLAG_PIN, path,
|
|
|
|
(HMODULE *) &ret))
|
|
|
|
{
|
|
|
|
/* Windows 2000 is missing the GetModuleHandleEx call, so we
|
2011-08-16 22:08:34 +02:00
|
|
|
use a non-documented way to set the DLL to "don't free".
|
|
|
|
This is how it works: Fetch the Windows Loader data from
|
|
|
|
the PEB. Iterate backwards through the list of loaded
|
|
|
|
DLLs and compare the DllBase address with the address
|
|
|
|
returned by LoadLibrary. If they are equal we found the
|
|
|
|
right entry. Now set the LoadCount to -1, which is the
|
|
|
|
marker for a DLL which should never be free'd. */
|
|
|
|
PPEB_LDR_DATA ldr = NtCurrentTeb ()->Peb->Ldr;
|
|
|
|
|
|
|
|
for (PLDR_DATA_TABLE_ENTRY entry = (PLDR_DATA_TABLE_ENTRY)
|
|
|
|
ldr->InLoadOrderModuleList.Blink;
|
|
|
|
entry && entry->DllBase;
|
|
|
|
entry = (PLDR_DATA_TABLE_ENTRY)
|
|
|
|
entry->InLoadOrderLinks.Blink)
|
|
|
|
{
|
|
|
|
if (entry->DllBase == ret)
|
|
|
|
{
|
|
|
|
entry->LoadCount = (WORD) -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-08-16 16:44:26 +02:00
|
|
|
}
|
|
|
|
}
|
2009-08-13 09:35:50 +02:00
|
|
|
|
|
|
|
/* Restore original cxx_malloc pointer. */
|
|
|
|
__cygwin_user_data.cxx_malloc = tmp_malloc;
|
|
|
|
|
2011-05-11 15:25:27 +02:00
|
|
|
if (!ret)
|
2001-03-26 03:16:11 +02:00
|
|
|
__seterrno ();
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
set_dl_error ("dlopen");
|
|
|
|
debug_printf ("ret %p", ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-16 16:44:26 +02:00
|
|
|
extern "C" void *
|
2000-02-17 20:38:33 +01:00
|
|
|
dlsym (void *handle, const char *name)
|
|
|
|
{
|
2004-09-14 10:29:12 +02:00
|
|
|
void *ret = NULL;
|
2011-05-11 15:25:27 +02:00
|
|
|
|
2004-09-14 10:29:12 +02:00
|
|
|
if (handle == RTLD_DEFAULT)
|
|
|
|
{ /* search all modules */
|
2011-05-11 15:25:27 +02:00
|
|
|
PDEBUG_BUFFER buf;
|
|
|
|
NTSTATUS status;
|
|
|
|
|
|
|
|
buf = RtlCreateQueryDebugBuffer (0, FALSE);
|
|
|
|
if (!buf)
|
2005-05-02 05:50:11 +02:00
|
|
|
{
|
2011-05-11 15:25:27 +02:00
|
|
|
set_errno (ENOMEM);
|
2005-05-02 05:50:11 +02:00
|
|
|
set_dl_error ("dlsym");
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-05-11 15:25:27 +02:00
|
|
|
status = RtlQueryProcessDebugInformation (GetCurrentProcessId (),
|
|
|
|
PDI_MODULES, buf);
|
|
|
|
if (!NT_SUCCESS (status))
|
|
|
|
__seterrno_from_nt_status (status);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PDEBUG_MODULE_ARRAY mods = (PDEBUG_MODULE_ARRAY)
|
|
|
|
buf->ModuleInformation;
|
|
|
|
for (ULONG i = 0; i < mods->Count; ++i)
|
|
|
|
if ((ret = (void *)
|
|
|
|
GetProcAddress ((HMODULE) mods->Modules[i].Base, name)))
|
|
|
|
break;
|
|
|
|
if (!ret)
|
|
|
|
set_errno (ENOENT);
|
|
|
|
}
|
|
|
|
RtlDestroyQueryDebugBuffer (buf);
|
2004-09-14 10:29:12 +02:00
|
|
|
}
|
|
|
|
else
|
2011-05-11 15:25:27 +02:00
|
|
|
{
|
|
|
|
ret = (void *) GetProcAddress ((HMODULE) handle, name);
|
|
|
|
if (!ret)
|
|
|
|
__seterrno ();
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
if (!ret)
|
|
|
|
set_dl_error ("dlsym");
|
|
|
|
debug_printf ("ret %p", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-16 16:44:26 +02:00
|
|
|
extern "C" int
|
2000-02-17 20:38:33 +01:00
|
|
|
dlclose (void *handle)
|
|
|
|
{
|
2010-02-26 22:36:31 +01:00
|
|
|
int ret;
|
|
|
|
if (handle == GetModuleHandle (NULL))
|
2000-02-17 20:38:33 +01:00
|
|
|
ret = 0;
|
2010-02-28 16:54:25 +01:00
|
|
|
else if (FreeLibrary ((HMODULE) handle))
|
|
|
|
ret = 0;
|
2010-02-26 22:36:31 +01:00
|
|
|
else
|
2010-02-28 16:54:25 +01:00
|
|
|
ret = -1;
|
2000-02-17 20:38:33 +01:00
|
|
|
if (ret)
|
|
|
|
set_dl_error ("dlclose");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-16 16:44:26 +02:00
|
|
|
extern "C" char *
|
2000-02-17 20:38:33 +01:00
|
|
|
dlerror ()
|
|
|
|
{
|
2003-02-01 06:00:15 +01:00
|
|
|
char *res;
|
2003-12-23 17:26:31 +01:00
|
|
|
if (!_my_tls.locals.dl_error)
|
2003-02-01 06:00:15 +01:00
|
|
|
res = NULL;
|
|
|
|
else
|
|
|
|
{
|
2003-12-23 17:26:31 +01:00
|
|
|
_my_tls.locals.dl_error = 0;
|
|
|
|
res = _my_tls.locals.dl_buffer;
|
2003-02-01 06:00:15 +01:00
|
|
|
}
|
|
|
|
return res;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|