| 2918 | } |
| 2919 | |
| 2920 | std::size_t configuration_impl::get_io_thread_count(const std::string& _name) const { |
| 2921 | std::size_t its_io_thread_count = VSOMEIP_DEFAULT_IO_THREAD_COUNT; |
| 2922 | |
| 2923 | auto found_application = applications_.find(_name); |
| 2924 | if (found_application != applications_.end()) { |
| 2925 | its_io_thread_count = found_application->second.thread_count_; |
| 2926 | } |
| 2927 | |
| 2928 | return its_io_thread_count; |
| 2929 | } |
| 2930 | |
| 2931 | int configuration_impl::get_io_thread_nice_level(const std::string& _name) const { |
| 2932 | int its_io_thread_nice_level = VSOMEIP_DEFAULT_IO_THREAD_NICE_LEVEL; |
no test coverage detected