-
Notifications
You must be signed in to change notification settings - Fork 849
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added balancing groups and common group receiver #2885
base: master
Are you sure you want to change the base?
Conversation
…. Fixed epoll usage for reception for groups.
…ps to balancing-mode loss report
…dded some more logs
@@ -126,6 +127,7 @@ | |||
for (int i = 0; i < iNumUnits; ++i) | |||
{ | |||
tempu[i].m_bTaken = false; | |||
tempu[i].m_pParentQueue = this; |
Check warning
Code scanning / CodeQL
Local variable address stored in non-local memory Warning
parameter
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2885 +/- ##
==========================================
- Coverage 64.88% 63.84% -1.04%
==========================================
Files 101 102 +1
Lines 17634 18322 +688
==========================================
+ Hits 11441 11698 +257
- Misses 6193 6624 +431 ☔ View full report in Codecov by Sentry. |
(further impossible fixes pending) Co-authored-by: Maxim Sharabayko <[email protected]>
That feature looks so cool! Is there any timeline when the next major version of SRT will be published along with this? |
srtcore/utilities.h
Outdated
/* | ||
const T& operator[](int index) const | ||
{ | ||
if (index < 0 || static_cast<size_t>(index) >= m_size) | ||
throw_invalid_index(index); | ||
|
||
return m_entries[index]; | ||
} | ||
|
||
T& operator[](int index) | ||
{ | ||
if (index < 0 || static_cast<size_t>(index) >= m_size) | ||
throw_invalid_index(index); | ||
|
||
return m_entries[index]; | ||
} | ||
*/ |
Check notice
Code scanning / CodeQL
Commented-out code Note
Draft until #2527