Changeset 20992

Show
Ignore:
Timestamp:
01/12/08 06:19:44 (8 months ago)
Author:
patrick
Message:

Silenced Doxygen warnings. No functional changes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/trunk/modules/vapor/vpr/DynLoad/LibraryLoader.h

    r20974 r20992  
    237237    * the name of the shared library to load. 
    238238    * 
    239     * @parram nameExt The new name extension (such as "_x") that will be used 
    240     *                by makeFullDSOName(). 
     239    * @param nameExt The new name extension (such as "_x") that will be used 
     240    *                by makeFullDSOName(). 
    241241    * 
    242242    * @since 2.1.2 
  • juggler/trunk/modules/vapor/vpr/Perf/ProfileManager.h

    r20974 r20992  
    121121      static void printTree(bool forAllThreads = true); 
    122122 
    123       /** @nameIterator handling. */ 
     123      /** @name Iterator handling. */ 
    124124      //@{ 
    125125      /** Returns a new Iterator that is set to the root. */ 
  • juggler/trunk/modules/vapor/vpr/md/NSPR/Thread/ThreadNSPR.h

    r20974 r20992  
    4747#  include <process.h> 
    4848#endif 
     49 
     50#include <boost/concept_check.hpp> 
    4951 
    5052#include <prthread.h> 
     
    273275    * @since 2.1.6 
    274276    */ 
    275    void setRunOn(const int
    276    { 
    277       /* Do nothing. */
     277   void setRunOn(const int cpu
     278   { 
     279      boost::ignore_unused_variable_warning(cpu)
    278280   } 
    279281 
     
    324326    * @note This operation is not currently supported by NSPR threads. 
    325327    */ 
    326    void kill(const int
    327    { 
    328       /* Do nothing. */
     328   void kill(const int signum
     329   { 
     330      boost::ignore_unused_variable_warning(signum)
    329331   } 
    330332 
  • juggler/trunk/modules/vapor/vpr/md/POSIX/Thread/ThreadPosix.h

    r20974 r20992  
    104104               VPRThreadScope scope = VPR_GLOBAL_THREAD, 
    105105               VPRThreadState state = VPR_JOINABLE_THREAD, 
    106                size_t stack_size = 0); 
     106               size_t stackSize = 0); 
    107107 
    108108   /** 
  • juggler/trunk/modules/vapor/vpr/md/WIN32/Thread/ThreadWin32.h

    r20974 r20992  
    4747#include <process.h> 
    4848#include <vector> 
     49#include <boost/concept_check.hpp> 
    4950 
    5051// To get the Win32 key stuff for storing self. 
     
    101102               VPRThreadScope scope = VPR_GLOBAL_THREAD, 
    102103               VPRThreadState state = VPR_JOINABLE_THREAD, 
    103                size_t stack_size = 0); 
     104               size_t stackSize = 0); 
    104105 
    105106   /** 
     
    331332    * @note This method does nothing. Use kill() instead. 
    332333    */ 
    333    void kill(const int
     334   void kill(const int signum
    334335   { 
     336      boost::ignore_unused_variable_warning(signum); 
    335337      std::cerr << "vpr::ThreadWin32::kill() is not implemented!" 
    336338                << std::endl;