Changeset 62 in flair-dev for trunk/include/FlairCore


Ignore:
Timestamp:
Jan 9, 2018, 11:44:14 AM (7 years ago)
Author:
Sanahuja Guillaume
Message:

m

Location:
trunk/include/FlairCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/FlairCore/Semaphore.h

    r47 r62  
    4848
    4949  /*!
     50  * \brief TryGetSemaphore
     51  *
     52  * Lock the semaphore. If not possible immediately returns false
     53  *
     54  */
     55  bool TryGetSemaphore() const;
     56
     57  /*!
    5058  * \brief GetSemaphore
    5159  *
  • trunk/include/FlairCore/SharedMem.h

    r50 r62  
    2727*
    2828* Shared memory is identified by its name so it can be accessed
    29 * by another processus using its name.
     29* by another process using its name.
    3030*/
    3131
     
    6565  * \param size buffer size
    6666  */
    67   void Read(char *buf, size_t size) const;
     67  bool Read(char *buf, size_t size, Time nsTimeout=TIME_INFINITE) const;
    6868
    6969
    7070  /*!
    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)
    7272  */
    7373   void ReaderReady();
  • trunk/include/FlairCore/Vector3DSpinBox.h

    r50 r62  
    6868  void XmlEvent(void);
    6969
    70   core::Vector3Df box_value;
     70  core::Vector3D<double> box_value;
    7171};
    7272
Note: See TracChangeset for help on using the changeset viewer.