Changeset 213 in flair-src for trunk/lib/FlairCore/src/unexported
- Timestamp:
- Jan 30, 2018, 5:47:12 PM (7 years ago)
- Location:
- trunk/lib/FlairCore/src/unexported
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/unexported/FrameworkManager_impl.h
r186 r213 46 46 size_t rcv_buf_size); 47 47 void SetupUserInterface(std::string xml_file); 48 void SetupLogger(std::string log_path );48 void SetupLogger(std::string log_path,uint32_t stackSize); 49 49 void AddDeviceToLog(flair::core::IODevice *device); 50 50 bool IsDeviceLogged(const flair::core::IODevice *device) const; -
trunk/lib/FlairCore/src/unexported/Thread_impl.h
r186 r213 32 32 class Thread_impl { 33 33 public: 34 Thread_impl(flair::core::Thread *self, uint8_t priority );34 Thread_impl(flair::core::Thread *self, uint8_t priority,uint32_t stackSize); 35 35 ~Thread_impl(); 36 36 void Start(void); … … 55 55 flair::core::ConditionVariable *cond; 56 56 uint8_t priority; 57 uint32_t stackSize; 57 58 flair::core::Time max_latency, min_latency, mean_latency; 58 59 flair::core::Time last; -
trunk/lib/FlairCore/src/unexported/config.h
r15 r213 20 20 21 21 // stack size of nrt threads, comment it to use default value 22 // only used for user threads in udpsocket and ui_com, in case of the rt library 22 23 #define NRT_STACK_SIZE 1024 * 1024 * 1 23 24 // stack size of rt threads, comment it to use default value25 #define RT_STACK_SIZE 1024 * 10026 24 27 25 // rt pipe size, comment it to use system heap … … 32 30 33 31 // rt log heap size 34 #define LOG_HEAP 1024 * 10032 #define RT_LOG_HEAP 1024 * 100 35 33 36 // xml heap size37 #define XML_HEAP 5 * 1024 * 102434 // rt xml heap size 35 #define RT_XML_HEAP 5 * 1024 * 1024 38 36 39 37 // nrt pipe path
Note:
See TracChangeset
for help on using the changeset viewer.