summaryrefslogtreecommitdiffstats
path: root/src/common/threadsafe_queue.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Adressed review commentsB3n302019-02-151-6/+7
|
* threadsafe_queue: Add WaitIfEmpty and use it in loggingB3n302019-02-151-1/+18
|
* threadsafe_queue: Use std::size_t for representing sizeLioncash2019-02-131-7/+6
| | | | | | Makes it consistent with the regular standard containers in terms of size representation. This also gets rid of dependence on our own type aliases, removing the need for an include.
* threadsafe_queue: Remove NeedSize template parameterLioncash2019-02-131-13/+11
| | | | | | The necessity of this parameter is dubious at best, and in 2019 probably offers completely negligible savings as opposed to just leaving this enabled. This removes it and simplifies the overall interface.
* remove polymorphism issueB3n302018-07-291-2/+30
|
* CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119)B3n302018-01-091-0/+122
* CoreTiming: New CoreTiming; Add Test for CoreTiming