aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/experts/expert_container.cpp
Commit message (Collapse)AuthorAgeFilesLines
* utils: introduce new logging API and remove msg APIAndrej Rode2017-02-201-2/+2
|
* uhd: replace BOOST_FOREACH with C++11 range-based for loopAndrej Rode2017-02-101-9/+8
| | | | | Note: This is the first commit that uses for-range, and range-based for-loops are now usable for UHD development.
* TwinRX: Clarify Expert log messages on resolvesDerek Kozel2017-01-301-2/+2
|
* experts: remove delete after throwAndrej Rode2017-01-121-4/+2
|
* Remove all boost:: namespace prefix for uint32_t, int32_t etc. (fixed-width ↵Martin Braun2016-11-081-4/+4
| | | | | | | | types) - Also removes all references to boost/cstdint.hpp and replaces it with stdint.h (The 'correct' replacement would be <cstdint>, but not all of our compilers support that).
* Experts: Always resolve all nodes in the graphDerek Kozel2016-10-261-4/+9
|
* experts: Print values of data nodes when debuggingAshish Chaudhari2016-03-211-2/+5
|
* experts: Multiple minor fixes/enhancementsAshish Chaudhari2016-02-261-5/+5
| | | | | | | | - Fixed segfault issue for graph modification errors - Demangled node type names and added quotes to "dot" labels to allow fully qualified C++ names - add_prop_node functions initialize the property objects in the tree in addition to data nodes - Passed in resolve mutex to desired data node correctly - Added == and != operators to data accessors
* uhd: Added expert dependency tracking infrastructureAshish Chaudhari2016-02-121-0/+528
- Code location uhd/lib/experts - expert_nodes.hpp contains all node definitions: data and worker - expert_container.hpp contains the memory manager and resolver for expert nodes - expert_factory contains the initializer and modifier for expert_container