|
From: Carlo W. <li...@us...> - 2002-02-13 04:04:06
|
CVSROOT : /cvsroot/libcw
Module : src
Commit time: 2002-01-13 04:04:06 UTC
Modified files:
libcwd/debug.cc
Log message:
Small documentation update.
---------------------- diff included ----------------------
Index: src/libcwd/debug.cc
diff -u src/libcwd/debug.cc:1.68 src/libcwd/debug.cc:1.69
--- src/libcwd/debug.cc:1.68 Tue Feb 12 19:55:25 2002
+++ src/libcwd/debug.cc Tue Feb 12 20:03:56 2002
@@ -1,4 +1,4 @@
-// $Header: /cvsroot/l/li/libcw/src/libcwd/debug.cc,v 1.68 2002/02/13 03:55:25 libcw Exp $
+// $Header: /cvsroot/l/li/libcw/src/libcwd/debug.cc,v 1.69 2002/02/13 04:03:56 libcw Exp $
//
// Copyright (C) 2000 - 2001, by
//
@@ -1529,8 +1529,8 @@
* \ingroup group_destination
*
* Assign a new \c ostream to this %debug object.
- * The \c ostream will only be written to after obtaining the lock
- * that is passed as second argument.
+ * The \c ostream will only be written to after acquiring the
+ * pthread mutex passed in the second argument.
*
* <b>Example:</b>
*
@@ -1568,10 +1568,11 @@
#endif // LIBCWD_THREAD_SAFE
/**
- * \brief Set output device.
+ * \brief Set output device (single threaded applications).
* \ingroup group_destination
*
* Assign a new \c ostream to this %debug object (default is <CODE>std::cerr</CODE>).
+ * For use in single threaded applications only.
*/
void debug_ct::set_ostream(std::ostream* os)
{
----------------------- End of diff -----------------------
|