Changeset 20992
- Timestamp:
- 01/12/08 06:19:44 (8 months ago)
- Files:
-
- juggler/trunk/modules/vapor/vpr/DynLoad/LibraryLoader.h (modified) (1 diff)
- juggler/trunk/modules/vapor/vpr/Perf/ProfileManager.h (modified) (1 diff)
- juggler/trunk/modules/vapor/vpr/md/NSPR/Thread/ThreadNSPR.h (modified) (3 diffs)
- juggler/trunk/modules/vapor/vpr/md/POSIX/Thread/ThreadPosix.h (modified) (1 diff)
- juggler/trunk/modules/vapor/vpr/md/WIN32/Thread/ThreadWin32.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/vapor/vpr/DynLoad/LibraryLoader.h
r20974 r20992 237 237 * the name of the shared library to load. 238 238 * 239 * @par ram nameExt The new name extension (such as "_x") that will be used240 * by makeFullDSOName().239 * @param nameExt The new name extension (such as "_x") that will be used 240 * by makeFullDSOName(). 241 241 * 242 242 * @since 2.1.2 juggler/trunk/modules/vapor/vpr/Perf/ProfileManager.h
r20974 r20992 121 121 static void printTree(bool forAllThreads = true); 122 122 123 /** @name Iterator handling. */123 /** @name Iterator handling. */ 124 124 //@{ 125 125 /** Returns a new Iterator that is set to the root. */ juggler/trunk/modules/vapor/vpr/md/NSPR/Thread/ThreadNSPR.h
r20974 r20992 47 47 # include <process.h> 48 48 #endif 49 50 #include <boost/concept_check.hpp> 49 51 50 52 #include <prthread.h> … … 273 275 * @since 2.1.6 274 276 */ 275 void setRunOn(const int )276 { 277 /* Do nothing. */;277 void setRunOn(const int cpu) 278 { 279 boost::ignore_unused_variable_warning(cpu); 278 280 } 279 281 … … 324 326 * @note This operation is not currently supported by NSPR threads. 325 327 */ 326 void kill(const int )327 { 328 /* Do nothing. */;328 void kill(const int signum) 329 { 330 boost::ignore_unused_variable_warning(signum); 329 331 } 330 332 juggler/trunk/modules/vapor/vpr/md/POSIX/Thread/ThreadPosix.h
r20974 r20992 104 104 VPRThreadScope scope = VPR_GLOBAL_THREAD, 105 105 VPRThreadState state = VPR_JOINABLE_THREAD, 106 size_t stack _size = 0);106 size_t stackSize = 0); 107 107 108 108 /** juggler/trunk/modules/vapor/vpr/md/WIN32/Thread/ThreadWin32.h
r20974 r20992 47 47 #include <process.h> 48 48 #include <vector> 49 #include <boost/concept_check.hpp> 49 50 50 51 // To get the Win32 key stuff for storing self. … … 101 102 VPRThreadScope scope = VPR_GLOBAL_THREAD, 102 103 VPRThreadState state = VPR_JOINABLE_THREAD, 103 size_t stack _size = 0);104 size_t stackSize = 0); 104 105 105 106 /** … … 331 332 * @note This method does nothing. Use kill() instead. 332 333 */ 333 void kill(const int )334 void kill(const int signum) 334 335 { 336 boost::ignore_unused_variable_warning(signum); 335 337 std::cerr << "vpr::ThreadWin32::kill() is not implemented!" 336 338 << std::endl;
