| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | common/thread: Make Barrier's 'count' member non-const | 2018-11-21 | 1 | -1/+1 | |
| | | | | | | | | | | | While admirable as a means to ensure immutability, this has the unfortunate downside of making the class non-movable. std::move cannot actually perform a move operation if the provided operand has const data members (std::move acts as an operation to "slide" resources out of an object instance). Given Barrier contains move-only types such as std::mutex, this can lead to confusing error messages if an object ever contained a Barrier instance and said object was attempted to be moved. | ||||
| * | common/thread: Initialize class member variables where applicable | 2018-11-21 | 1 | -6/+4 | |
| | | | | | Simplifies the constructor interfaces for Barrier and Event classes. | ||||
| * | common/thread: Group non-member functions together | 2018-11-21 | 1 | -3/+2 | |
| | | | | | | Keeps the non-member interface in one spot instead of split into two places, making it nicer to locate functions. | ||||
| * | common/thread: Remove SleepCurrentThread() | 2018-11-21 | 1 | -1/+0 | |
| | | | | | | | | This is also unused and superceded by standard functionality. The standard library provides std::this_thread::sleep_for(), which provides a much more flexible interface, as different time units can be used with it. | ||||
| * | common/thread: Remove unused CurrentThreadId() | 2018-11-21 | 1 | -2/+0 | |
| | | | | | | | This is an old function that's no longer necessary. C++11 introduced proper threading support to the language and a thread ID can be retrieved via std::this_thread::get_id() if it's ever needed. | ||||
| * | common/thread: remove YieldCPU() | 2018-09-22 | 1 | -8/+0 | |
| | | | | | simply use the standard library yield() | ||||
| * | Port #4182 from Citra: "Prefix all size_t with std::" | 2018-09-15 | 1 | -5/+5 | |
| | | |||||
| * | common/thread: Remove unnecessary feature checking for thread_local | 2018-04-19 | 1 | -19/+0 | |
| | | | | | Every compiler we require already supports it. | ||||
| * | Common::Event: add WaitUntil | 2016-12-26 | 1 | -0/+10 | |
| | | |||||
| * | Remove empty newlines in #include blocks. | 2016-09-21 | 1 | -1/+0 | |
| | | | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | ||||
| * | Manually tweak source formatting and then re-run clang-format | 2016-09-18 | 1 | -4/+2 | |
| | | |||||
| * | Sources: Run clang-format on everything. | 2016-09-18 | 1 | -18/+22 | |
| | | |||||
| * | Thread: Make Barrier reusable | 2016-04-14 | 1 | -5/+5 | |
| | | |||||
| * | common/thread: Correct code style | 2016-04-14 | 1 | -21/+19 | |
| | | |||||
| * | Common: Cleanup thread includes. | 2015-06-28 | 1 | -14/+2 | |
| | | |||||
| * | Common: Remove common.h | 2015-05-07 | 1 | -1/+0 | |
| | | |||||
| * | Common: thread.h cleanups | 2015-04-16 | 1 | -65/+16 | |
| | | | | | | The helper classes are rendered obsolete by C++11 lambdas. Also made formatting conform to our code style. | ||||
| * | Add profiling infrastructure and widget | 2015-03-01 | 1 | -0/+19 | |
| | | |||||
| * | License change | 2014-12-20 | 1 | -2/+2 | |
| | | |||||
| * | New logging system | 2014-12-13 | 1 | -0/+1 | |
| | | |||||
| * | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵ | 2014-11-19 | 1 | -4/+4 | |
| | | | | | or generated | ||||
| * | Remove extraneous semicolons | 2014-11-18 | 1 | -1/+1 | |
| | | |||||
| * | Removed common/std_xyz, instead using the std header | 2014-09-07 | 1 | -4/+3 | |
| | | |||||
| * | Common: Move remaining C header includes over to their C++ equivalent | 2014-08-17 | 1 | -2/+2 | |
| | | |||||
| * | Common: Move header guards over to pragma once | 2014-08-17 | 1 | -4/+1 | |
| | | | | | Also replaced C headers with the C++ equivalent ones | ||||
| * | fixed project includes to use new directory structure | 2014-04-08 | 1 | -4/+4 | |
| | | |||||
| * | got rid of 'src' folders in each sub-project | 2014-04-08 | 1 | -0/+156 | |