Changeset 62 in flair-dev for trunk/include/FlairCore
- Timestamp:
- Jan 9, 2018, 11:44:14 AM (7 years ago)
- Location:
- trunk/include/FlairCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairCore/Semaphore.h
r47 r62 48 48 49 49 /*! 50 * \brief TryGetSemaphore 51 * 52 * Lock the semaphore. If not possible immediately returns false 53 * 54 */ 55 bool TryGetSemaphore() const; 56 57 /*! 50 58 * \brief GetSemaphore 51 59 * -
trunk/include/FlairCore/SharedMem.h
r50 r62 27 27 * 28 28 * Shared memory is identified by its name so it can be accessed 29 * by another process ususing its name.29 * by another process using its name. 30 30 */ 31 31 … … 65 65 * \param size buffer size 66 66 */ 67 void Read(char *buf, size_t size) const;67 bool Read(char *buf, size_t size, Time nsTimeout=TIME_INFINITE) const; 68 68 69 69 70 70 /*! 71 * \brief This function should be called when reader starts(in case of a SharedMem of type producerConsumer)71 * \brief This function should be called when reader is ready (in case of a SharedMem of type producerConsumer) 72 72 */ 73 73 void ReaderReady(); -
trunk/include/FlairCore/Vector3DSpinBox.h
r50 r62 68 68 void XmlEvent(void); 69 69 70 core::Vector3D fbox_value;70 core::Vector3D<double> box_value; 71 71 }; 72 72
Note:
See TracChangeset
for help on using the changeset viewer.