aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Add list of supported modulesFenrir2018-02-111-0/+65
|
* Fix memory leak in Soc::initFenrir2018-02-111-0/+1
| | | | Ain't manual memory management grand?
* Add documentation for SocFenrir2018-02-111-0/+13
|
* Add Soc::init_with_buffer_sizeFenrir2018-02-111-3/+5
|
* Add Soc serviceFenrir2018-02-114-0/+38
|
* Stub out set_cloexecFenrir2018-02-111-26/+2
|
* Filter out glibc symbolsFenrir2018-02-112-2/+3
| | | | we're not glibc and these caused a linker error when building `std` in debug mode
* Update travis configFenrir2018-02-111-1/+1
|
* Remove build script from examplesFenrir2018-02-112-13/+0
|
* Link libctru in ctru-sysFenrir2018-02-112-1/+0
| | | | | | Allows debug builds to compile without throwing out random linker errors. Plus it probably should have been this way the whole time anyway.
* We aren't linuxFenrir2018-02-101-1/+1
|
* Update examplesFenrir2018-02-063-5/+11
|
* Add wait_for_vblank functionFenrir2018-02-061-10/+13
| | | | Also change gfx methods to take &self instead of unnecessarily taking &mut self
* Use bitflags 1.0 for button pressesFenrir2018-02-066-29/+30
|
* Fix unsoundness in Console's APIFenrir2018-02-061-11/+26
|
* Update nightly to 2018-01-26Fenrir2018-01-261-1/+1
|
* repr_align stabilizedFenrir2018-01-261-1/+0
|
* core::ops::Place is unsafe nowFenrir2018-01-261-1/+1
|
* Increase reader count + style fixesFenrir2018-01-251-3/+19
|
* Notify all threads when the write-lock goes out of scopeFenrir2018-01-251-1/+1
|
* Fix mutex try_lock logicFenrir2018-01-251-4/+4
| | | | Wow, not sure how I messed that one up
* Initial rwlock implFenrir2018-01-251-4/+54
|
* Add debug svc printing to the default panic hookFenrir2018-01-231-63/+26
| | | | Removes the need to have a separate panic hook for Citra
* Remove macOS files that were accidentally includedFenrir2018-01-223-259/+0
|
* Restore thread APIs that were accidentally deletedFenrir2018-01-221-0/+18
| | | | Oops.
* Ensure that the sysroot uses its own libcFenrir2018-01-213-4/+6
|
* Update Travis for the latest nightlyFenrir2018-01-211-3/+4
|
* Recreate ctr-std from latest nightlyFenrir2018-01-21109-2942/+23070
|
* Update CI for Rust nightly-2017-12-01 + other fixesFenrir2017-12-013-5/+4
|
* Better workaround for the `feature(rustc_private)]` issueFenrir2017-12-012-0/+6
| | | | Now you don't need a janky `Xargo` fork anymore!
* Patch `std` to be compatible with Rust nightly-2017-12-01Fenrir2017-12-0111-508/+262
| | | | This only fixes things enough so that the project compiles again. More standard library changes from upstream Rust will be pulled in later.
* Update bindings for libctru v1.4.0Fenrir2017-11-187-4465/+4459
|
* Merge pull request #44 from FenrirWolf/panic-unwindRonald Kinard2017-08-0211-128/+571
|\ | | | | Add unwinding strategy for panics
| * Properly set up main threadFenrir2017-08-012-25/+27
| |
| * Update pinned nightly to 2017-07-31Fenrir2017-08-011-1/+1
| |
| * Add unwinding strategy for panicsFenrir2017-07-3110-116/+557
|/
* Merge pull request #41 from FenrirWolf/panic-rebootRonald Kinard2017-07-311-2/+6
|\ | | | | Reboot the system after panicking
| * Trigger reboot after panickingFenrir2017-07-291-2/+6
| |
* | Merge pull request #42 from FenrirWolf/hid-updateRonald Kinard2017-07-316-109/+199
|\ \ | |/ |/| Refactor HID module
| * Fix documentationFenrir2017-07-291-4/+4
| |
| * Update examplesFenrir2017-07-293-4/+79
| |
| * Bump versionFenrir2017-07-291-1/+1
| |
| * Refactor HID moduleFenrir2017-07-291-87/+99
| |
| * Update bitflagsFenrir2017-07-272-17/+20
|/
* Merge pull request #40 from FenrirWolf/thread-fixRonald Kinard2017-07-266-254/+606
|\ | | | | Update thread module
| * Print thread name in panic msgFenrir2017-07-261-5/+19
| |
| * Thread fixes + module updateFenrir2017-07-266-249/+587
| |
* | Merge pull request #38 from FenrirWolf/examplesRonald Kinard2017-07-267-0/+157
|\ \ | | | | | | Add examples directory
| * | Add examples directoryFenrir2017-07-257-0/+157
| |/
* | Merge pull request #39 from panicbit/travis_fixRonald Kinard2017-07-261-5/+1
|\ \ | | | | | | travis: Build examples properly