libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[FYI] undo strangeness in branch-1-5 libltdl/ltdl.h


From: Peter O'Gorman
Subject: [FYI] undo strangeness in branch-1-5 libltdl/ltdl.h
Date: Wed, 07 Jul 2004 22:01:30 +0900
User-agent: Mozilla Thunderbird 0.6 (Macintosh/20040502)

I just applied this to branch-1-5

Peter
--
Peter O'Gorman - http://www.pogma.com

Index: ChangeLog
2004-07-07  Peter O'Gorman  <address@hidden>

        * libltdl/ltdl.h: Undo inadvertent changes from the last commit.

from  Noah Misch  <address@hidden>
Index: libltdl/ltdl.h
===================================================================
RCS file: /cvsroot/libtool/libtool/libltdl/ltdl.h,v
retrieving revision 1.57.2.2
diff -u -3 -p -u -r1.57.2.2 ltdl.h
--- libltdl/ltdl.h 16 Jun 2004 15:54:50 -0000 1.57.2.2
+++ libltdl/ltdl.h 7 Jul 2004 12:56:28 -0000
@@ -185,6 +185,15 @@ LT_SCOPE   int         lt_dlisresident     LT_PARA
 /* --- 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;
 

reply via email to

[Prev in Thread] Current Thread [Next in Thread]