]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/ltdl.h: Undo inadvertent changes from the last commit.
authorPeter O'Gorman <peter@pogma.com>
Wed, 7 Jul 2004 12:58:58 +0000 (12:58 +0000)
committerPeter O'Gorman <peter@pogma.com>
Wed, 7 Jul 2004 12:58:58 +0000 (12:58 +0000)
ChangeLog
libltdl/ltdl.h

index 77b36e892f5b9cff6c8eda16545bffa18e34b067..ea6157e278c042b7bcb8001c50d0a783b9913aac 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-07-07  Peter O'Gorman  <peter@pogma.com>
+
+       * libltdl/ltdl.h: Undo inadvertent changes from the last commit.
+
 2004-06-24  Noah Misch  <noah@cs.caltech.edu>
 
        * ltmain.in: Unset the zsh GLOB_SUBST option, which makes zsh
index 6fdbf9e1877af29350ff751848d5a75eb56c0d6c..995d403815d42df5036c48c6205d9180e537569d 100644 (file)
@@ -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;