From: Olly Betts Date: Wed, 1 Jun 2005 19:16:06 +0000 (+0000) Subject: * doc/libtool.texi (Thread Safety in libltdl), X-Git-Tag: release-1-5-20~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d98355b8f851e7390f81f10ebe43b7c91691662;p=thirdparty%2Flibtool.git * doc/libtool.texi (Thread Safety in libltdl), libltdl/ltdl.c (argz_create_sep): Fix some typos. --- diff --git a/ChangeLog b/ChangeLog index b228670b1..b3e14ee64 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,10 @@ -2004-05-31 Peter O'Gorman +2005-06-01 Olly Betts (tiny change), + Ralf Wildenhues + + * doc/libtool.texi (Thread Safety in libltdl), + libltdl/ltdl.c (argz_create_sep): Fix some typos. + +2005-05-31 Peter O'Gorman * ltmain.in: Do not add installed static litool libraries to convenience, they are not convenience libraries. diff --git a/doc/libtool.texi b/doc/libtool.texi index 59311998f..06969a890 100644 --- a/doc/libtool.texi +++ b/doc/libtool.texi @@ -165,7 +165,7 @@ Using libltdl * Libltdl interface:: How to use libltdl in your programs. * Modules for libltdl:: Creating modules that can be @code{dlopen}ed. -* Thread Saftey in libltdl:: Registering callbacks for multi-thread safety. +* Thread Safety in libltdl:: Registering callbacks for multi-thread safety. * User defined module data:: Associating data with loaded modules. * Module loaders for libltdl:: Creating user defined module loaders. * Distributing libltdl:: How to distribute libltdl with your package. @@ -2743,7 +2743,7 @@ distribution terms that you use for the rest of that program. @menu * Libltdl interface:: How to use libltdl in your programs. * Modules for libltdl:: Creating modules that can be @code{dlopen}ed. -* Thread Saftey in libltdl:: Registering callbacks for multi-thread safety. +* Thread Safety in libltdl:: Registering callbacks for multi-thread safety. * User defined module data:: Associating data with loaded modules. * Module loaders for libltdl:: Creating user defined module loaders. * Distributing libltdl:: How to distribute libltdl with your package. @@ -3074,7 +3074,7 @@ foo1_la_LDFLAGS = -module @end example -@node Thread Saftey in libltdl +@node Thread Safety in libltdl @section Using libtldl in a multi threaded environment Using the @code{lt_dlmutex_register()} function, and by providing some @@ -3097,7 +3097,7 @@ The type of a matching unlock function. @deftypefn {Type} void lt_dlmutex_seterror @w{(const char *@var{error});} Many of the functions in the libltdl @sc{api} have a special return -value to indicate to the client that an error has occured. Normally (in +value to indicate to the client that an error has occurred. Normally (in single threaded applications) a string describing that error can be retrieved from internal storage with @code{lt_dlerror()}. diff --git a/libltdl/ltdl.c b/libltdl/ltdl.c index fa7b39aa3..4b99e742c 100644 --- a/libltdl/ltdl.c +++ b/libltdl/ltdl.c @@ -625,7 +625,7 @@ argz_create_sep (str, delim, pargz, pargz_len) assert (pargz); assert (pargz_len); - /* Make a copy of STR, but replacing each occurence of + /* Make a copy of STR, but replacing each occurrence of DELIM with '\0'. */ argz_len = 1+ LT_STRLEN (str); if (argz_len)