| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #457 from Subv/qt | 2015-01-11 | 2 | -6/+6 | |
| |\ | | | | | citra-qt: Fixed some Qt errors on initialization | ||||
| | * | citra-qt: Add explicit casts to prevent some warnings. | 2015-01-10 | 1 | -2/+2 | |
| | | | |||||
| | * | citra-qt: Fixed some Qt errors on initialization | 2015-01-10 | 2 | -4/+4 | |
| | | | |||||
| * | | Merge pull request #462 from archshift/isbusy | 2015-01-11 | 1 | -1/+16 | |
| |\ \ | | | | | | | Stubbed y2r:u IsBusyConversion | ||||
| | * | | Stubbed y2r:u IsBusyConversion | 2015-01-10 | 1 | -1/+16 | |
| |/ / | | | | | | | | | There is no documentation available on this function, but we set the result to false as a stub. This allows Super Little Acorns to move all the way in game with pp3c. | ||||
| * | | Merge pull request #459 from archshift/logs | 2015-01-11 | 12 | -60/+33 | |
| |\ \ | | | | | | | Small additions and fixes to logging | ||||
| | * | | Added Archive ID to fs:USER debug logs involving opening the archive. | 2015-01-10 | 1 | -3/+3 | |
| | | | | |||||
| | * | | Logging: Log all called service functions (under trace). Compile out all ↵ | 2015-01-10 | 12 | -57/+30 | |
| | | | | | | | | | | | | | trace logs under release for performance. | ||||
| * | | | Merge pull request #460 from chinhodado/revert-319-travis-apt-cache | 2015-01-11 | 2 | -7/+0 | |
| |\ \ \ | |/ / |/| | | Revert "Travis: Enable caching of dependencies" | ||||
| | * | | Revert "Travis: Enable caching of dependencies" | 2015-01-10 | 2 | -7/+0 | |
| |/ / | |||||
| * | | Merge pull request #458 from yuriks/cmake-debug | 2015-01-10 | 1 | -1/+5 | |
| |\ \ | | | | | | | CMake: Consistently set _DEBUG and NDEBUG in all platforms | ||||
| | * | | CMake: Consistently set _DEBUG and NDEBUG in all platforms | 2015-01-10 | 1 | -1/+5 | |
| | |/ | |||||
| * | | Merge pull request #455 from yuriks/handle-reform3 | 2015-01-10 | 13 | -91/+97 | |
| |\ \ | |/ |/| | Kernel Lifetime Reform Pt. 3 | ||||
| | * | Kernel: Start using boost::intrusive_ptr for lifetime management | 2015-01-09 | 13 | -90/+95 | |
| | | | |||||
| | * | Kernel: Don't re-assign object's handle when duplicating one | 2015-01-09 | 2 | -2/+3 | |
| | | | |||||
| * | | Fix Windows build | 2015-01-10 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge pull request #342 from uppfinnarn/master | 2015-01-10 | 3 | -31/+13 | |
| |\ \ | | | | | | | Build improvements | ||||
| | * | | Looks like that might be needed on OSX after all | 2015-01-09 | 1 | -6/+2 | |
| | | | | |||||
| | * | | Use -pthread where and only where needed | 2015-01-09 | 3 | -9/+5 | |
| | | | | | | | | | | | | | | | | | | | Passing -pthread to GCC as a flag makes it both link to libpthread, and make C standard library routines reentrant. This makes the additional explicit links unnecessary. Additionally, on OSX, this is the default behavior, and clang will print a message about it being unused if it's present there. | ||||
| | * | | Link Cocoa, IOKit and CoreVideo on OSX | 2015-01-09 | 1 | -3/+4 | |
| | | | | | | | | | | | | | | | | | | | These are implicitly linked by Xcode, but with this, you can also build it with any other generator, which does not have this behavior. CoreFoundation is included as a part of Cocoa (which is an umbrella framework), and Cocoa is generally recommended to link against, rather than its individual components (CoreFoundation, Foundation, libobjc, ...). | ||||
| | * | | Generic PLATFORM_LIBRARIES var | 2015-01-09 | 3 | -19/+8 | |
| | | | | | | | | | | | | | This both reduces redundancy in add_executable definitions, and makes it easier to link additional libraries. In particular, extra libraries are needed on OSX - see next commit. | ||||
| * | | | Merge pull request #454 from chinhodado/patch-1 | 2015-01-09 | 1 | -2/+1 | |
| |\ \ \ | |_|/ |/| | | Cleanup: Remove redundant /Oi flag | ||||
| | * | | Cleanup: Remove redundant /Oi flag | 2015-01-09 | 1 | -2/+1 | |
| | | | | | | | | | | `/Oi` is included in `/Ox` already | ||||
| * | | | Merge pull request #444 from yuriks/handle-reform2 | 2015-01-09 | 25 | -374/+330 | |
| |\ \ \ | | | | | | | | | Kernel Lifetime Reform Pt. 2 | ||||
| | * | | | Thread: Fix nullptr access in a logging function | 2015-01-09 | 1 | -1/+2 | |
| | | | | | |||||
| | * | | | Thread: Rename thread_queue => thread_list | 2015-01-09 | 1 | -6/+6 | |
| | | | | | |||||
| | * | | | Thread: Reduce use of Handles and move some funcs to inside the class. | 2015-01-09 | 11 | -302/+222 | |
| | | | | | |||||
| | * | | | Kernel: Move Thread's definition to the header file | 2015-01-09 | 3 | -53/+67 | |
| | | | | | |||||
| | * | | | Move ThreadContext to core/core.h and deal with the fallout | 2015-01-09 | 18 | -32/+53 | |
| | | |/ | |/| | |||||
| * | | | Merge pull request #436 from kevinhartman/system-core | 2015-01-09 | 1 | -0/+5 | |
| |\ \ \ | |_|/ |/| | | Warn if a new thread is intended to be run on the system CPU core | ||||
| | * | | Warn if a new thread is intended to be run on the system CPU core until we ↵ | 2015-01-07 | 1 | -0/+5 | |
| | | | | | | | | | | | | | implement correct scheduling for such a thread. | ||||
| * | | | Merge pull request #453 from yuriks/vs-parallel | 2015-01-09 | 1 | -1/+2 | |
| |\ \ \ | |_|/ |/| | | CMake: Enable VS parallel builds for a good reduction in compile times | ||||
| | * | | CMake: Enable VS parallel builds for a good reduction in compile times | 2015-01-09 | 1 | -1/+2 | |
| |/ / | | | | | | | | | | | | | | | This enables the /MP compiler flag, which parallelizes builds of by distributing compilation of individual object files across workes processes, instead of being limited to per-project parallelism. Reduces the time for a full compile from 72 s to 45 s on my machine. | ||||
| * | | Merge pull request #255 from Subv/cbranch_3 | 2015-01-08 | 8 | -5/+234 | |
| |\ \ | | | | | | | Implemented timers | ||||
| | * | | SVC: Implemented the Timer service calls. | 2015-01-08 | 8 | -5/+234 | |
| | | | | |||||
| * | | | Merge pull request #451 from Subv/wut | 2015-01-08 | 2 | -8/+2 | |
| |\ \ \ | | | | | | | | | Core: Fixed a crash and removed some unused variables. | ||||
| | * | | | Core: Fixed a crash and removed some unused variables. | 2015-01-08 | 2 | -8/+2 | |
| |/ / / | | | | | | | | | | ARM_Disasm only has static methods, so there's no need to have an instance of it. | ||||
| * | | | Merge pull request #450 from Subv/ticks_fix | 2015-01-08 | 2 | -6/+3 | |
| |\ \ \ | | | | | | | | | Timing: Use CoreTiming::GetTicks to keep track of ticks. | ||||
| | * | | | DynCom: Add a comment to GetTicks. | 2015-01-08 | 1 | -0/+1 | |
| | | | | | |||||
| | * | | | Timing: Use CoreTiming::GetTicks to keep track of ticks. | 2015-01-08 | 2 | -6/+2 | |
| |/ / / | | | | | | | | | | This will keep track of idle ticks for us, and fixes some tickcount-related issues | ||||
| * | | | Merge pull request #443 from Subv/sleep_thread | 2015-01-08 | 3 | -8/+43 | |
| |\ \ \ | | | | | | | | | SVC: Fixed SleepThread | ||||
| | * | | | SVC: Fixed SleepThread. | 2015-01-08 | 3 | -8/+43 | |
| | | | | | | | | | | | | | | | | | It will now properly wait the specified number of nanoseconds and then wake up the thread. | ||||
| * | | | | Merge pull request #446 from lioncash/umaal | 2015-01-08 | 1 | -4/+4 | |
| |\ \ \ \ | | | | | | | | | | | dyncom: Fix UMAAL | ||||
| | * | | | | dyncom: Fix UMAAL | 2015-01-08 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | | | | These need to be done as a 64-bit operation. | ||||
| * | | | | | Merge pull request #441 from Kingcom/CallStack | 2015-01-07 | 1 | -0/+3 | |
| |\ \ \ \ \ | |_|/ / / |/| | | | | Add check for valid address to call stack | ||||
| | * | | | | citra-qt: Add check for valid address to call stack | 2015-01-07 | 1 | -0/+3 | |
| | | | | | | |||||
| * | | | | | Merge pull request #439 from Subv/idle_thread_m | 2015-01-07 | 4 | -2/+47 | |
| |\ \ \ \ \ | | | | | | | | | | | | | Threads: Use a dummy idle thread when no other are ready. | ||||
| | * | | | | | Threads: Use a dummy idle thread when no other are ready. | 2015-01-07 | 4 | -2/+47 | |
| |/ / / / / | | | | | | | | | | | | | | | | This thread will not actually execute instructions, it will only advance the timing/events and try to yield immediately to the next ready thread, if there aren't any ready threads then it will be rescheduled and start its job again. | ||||
| * | | | | | Merge pull request #404 from bunnei/more-frame-synch-fixes | 2015-01-07 | 2 | -2/+8 | |
| |\ \ \ \ \ | | | | | | | | | | | | | GPU: Toggle active framebuffer each frame | ||||
| | * | | | | | GSP: Toggle active framebuffer each frame | 2015-01-07 | 2 | -2/+8 | |
| | |/ / / / | |||||