From 352573b9b57c1181cba6362bf816106c989da74f Mon Sep 17 00:00:00 2001 From: Peter O'Gorman Date: Wed, 7 Jul 2004 12:58:58 +0000 Subject: [PATCH] * libltdl/ltdl.h: Undo inadvertent changes from the last commit. --- ChangeLog | 4 ++++ libltdl/ltdl.h | 13 +++++++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 77b36e892..ea6157e27 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-07-07 Peter O'Gorman + + * libltdl/ltdl.h: Undo inadvertent changes from the last commit. + 2004-06-24 Noah Misch * ltmain.in: Unset the zsh GLOB_SUBST option, which makes zsh diff --git a/libltdl/ltdl.h b/libltdl/ltdl.h index 6fdbf9e18..995d40381 100644 --- a/libltdl/ltdl.h +++ b/libltdl/ltdl.h @@ -185,6 +185,15 @@ LT_SCOPE int lt_dlisresident LT_PARAMS((lt_dlhandle handle)); /* --- MUTEX LOCKING --- */ +typedef void lt_dlmutex_lock LT_PARAMS((void)); +typedef void lt_dlmutex_unlock LT_PARAMS((void)); +typedef void lt_dlmutex_seterror LT_PARAMS((const char *errmsg)); +typedef const char *lt_dlmutex_geterror LT_PARAMS((void)); + +LT_SCOPE int lt_dlmutex_register LT_PARAMS((lt_dlmutex_lock *lock, + lt_dlmutex_unlock *unlock, + lt_dlmutex_seterror *seterror, + lt_dlmutex_geterror *geterror)); @@ -232,8 +241,8 @@ LT_SCOPE int lt_dlpreload_default /* Read only information pertaining to a loaded module. */ typedef struct { char *filename; /* file name */ - char *int; /* module name */ - name ref_count; /* number of times lt_dlopened minus + char *name; /* module name */ + int ref_count; /* number of times lt_dlopened minus number of times lt_dlclosed. */ } lt_dlinfo; -- 2.47.3