Changeset 19056 for trunk/psLib/src/mathtypes
- Timestamp:
- Aug 13, 2008, 5:18:41 PM (18 years ago)
- Location:
- trunk/psLib/src/mathtypes
- Files:
-
- 2 edited
-
psImage.h (modified) (3 diffs)
-
psVector.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/mathtypes/psImage.h
r15760 r19056 9 9 * @author Joshua Hoblitt, University of Hawaii 10 10 * 11 * @version $Revision: 1.9 6$ $Name: not supported by cvs2svn $12 * @date $Date: 200 7-12-07 19:33:19$11 * @version $Revision: 1.97 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2008-08-14 03:18:41 $ 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 14 14 */ … … 24 24 #include "psArray.h" 25 25 #include "psConstants.h" 26 26 #include "psMutex.h" 27 27 28 28 /** Basic image data structure. … … 56 56 psPtr p_rawDataBuffer; ///< Raw data buffer for Allocating/Freeing Images; private 57 57 psArray* children; ///< Children of this region. 58 void *lock;///< Optional lock for thread safety58 psMutex lock; ///< Optional lock for thread safety 59 59 } 60 60 psImage; -
trunk/psLib/src/mathtypes/psVector.h
r18311 r19056 10 10 * @author Joshua Hoblitt, University of Hawaii 11 11 * 12 * @version $Revision: 1.7 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2008-0 6-24 21:32:52$12 * @version $Revision: 1.72 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2008-08-14 03:18:41 $ 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 15 15 */ … … 23 23 #include <stdio.h> 24 24 #include "psType.h" 25 #include "psMutex.h" 25 26 26 27 /** An vector to support primitive types. … … 46 47 psF64* F64; ///< Double-precision float data. 47 48 } data; 48 void *lock;///< Optional lock for thread safety.49 psMutex lock; ///< Optional lock for thread safety. 49 50 } 50 51 psVector;
Note:
See TracChangeset
for help on using the changeset viewer.
