Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | service: refactor server architecture | Liam | 2023-02-21 | 1 | -3/+7 |
| | | | | Converts services to have their own processes | ||||
* | service: ptm: Rewrite PSM and add TS | german77 | 2022-06-29 | 1 | -0/+18 |
| | |||||
* | hle: Remove a large amount of 3ds-specific service code. | bunnei | 2017-10-10 | 1 | -166/+0 |
| | |||||
* | ResultVal: Remove MoveFrom() | Yuri Kunde Schlesner | 2017-06-19 | 1 | -1/+1 |
| | | | | | Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue. | ||||
* | FileSys: Move all result description to errors.h | Yuri Kunde Schlesner | 2017-05-25 | 1 | -1/+2 |
| | |||||
* | result: Make error description a generic integer | Yuri Kunde Schlesner | 2017-05-25 | 1 | -1/+1 |
| | | | | | | | | | It is now known that result code description vary depending on the module, and so they're best defined on a per-module basis. To support this, allow passing in an arbitrary integer instead of limiting to the ones in the ErrorDescription enum. These will be gradually migrated to their individual users, but a few will be kept as "common" codes shared by all modules. | ||||
* | use IPCHelper for PTM services | emmaus | 2017-05-19 | 1 | -30/+36 |
| | |||||
* | Merge pull request #2533 from Lectem/apt_ipchelper | bunnei | 2017-04-06 | 1 | -4/+8 |
|\ | | | | | IpcHelper enhancement and APT refactor | ||||
| * | IPCHelper Skip method + address comments for apt | Lectem | 2017-03-18 | 1 | -1/+1 |
| | | |||||
| * | move push out of class body and add u8 u16 bool specializations | Lectem | 2017-03-18 | 1 | -1/+1 |
| | | |||||
| * | refactor APT service to use the new IPC helpers | Lectem | 2017-03-18 | 1 | -4/+8 |
| | | |||||
* | | ptm: create SharedExtSave file before openning it | wwylele | 2017-03-25 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #2292 from lioncash/bool | Yuri Kunde Schlesner | 2016-12-09 | 1 | -1/+1 |
|\ | | | | | ptm: Use boolean instead of integral value | ||||
| * | ptm: Use boolean instead of integral value | Lioncash | 2016-12-09 | 1 | -1/+1 |
| | | | | | | | | The third parameter of Write is actually a bool type, not an int. | ||||
* | | service: Add the ptm:s service | Lioncash | 2016-12-08 | 1 | -0/+1 |
| | | | | | | | | 3dbrew documents this as being the exact same as ptm:sysm | ||||
* | | service: Drop '_Interface' in ptm service class names | Lioncash | 2016-12-08 | 1 | -5/+5 |
| | | | | | | | | Inheriting from Service::Interface makes this obvious. | ||||
* | | service: Add ptm::gets and ptm::sets services | Lioncash | 2016-12-08 | 1 | -0/+4 |
| | | |||||
* | | ptm: Update ptm_sysm function table | Lioncash | 2016-12-08 | 1 | -1/+1 |
|/ | | | | Updated based off information from 3dbrew. | ||||
* | PTM & CFG: use the correct path and error code according to the new FileSys policy | wwylele | 2016-11-19 | 1 | -1/+1 |
| | |||||
* | Use negative priorities to avoid special-casing the self-include | Yuri Kunde Schlesner | 2016-09-21 | 1 | -1/+1 |
| | |||||
* | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | 2016-09-19 | 1 | -2/+1 |
| | |||||
* | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 2016-09-18 | 1 | -12/+19 |
| | |||||
* | New3DS: Minor style cleanup to #1520. | bunnei | 2016-05-24 | 1 | -2/+2 |
| | |||||
* | Implement CheckNew3DS and CheckNew3DSApp | JamePeng | 2016-04-20 | 1 | -1/+15 |
| | | | | | | Append an item[is_new3ds] to config file[System] group Implement APT::SetNSStateField,it will update the unknown NS_state_field | ||||
* | HLE/FS: Implemented GetFormatInfo | Subv | 2016-03-20 | 1 | -1/+1 |
| | | | | Format information is currently only implemented for the ExtSaveData, SharedExtSaveData and SaveData archives, the information is stored in a file alongside the root folder of the archive. | ||||
* | BitField: Make trivially copyable and remove assignment operator | MerryMage | 2016-02-12 | 1 | -2/+2 |
| | |||||
* | Fix wrong branch | Filiph Sandström | 2015-10-23 | 1 | -0/+12 |
| | |||||
* | PTM: Changed the way the ptm services are handled to be like the | purpasmart96 | 2015-05-12 | 1 | -6/+44 |
| | | | | IR, HID, and APT services. | ||||
* | FileSys: Clean-up includes, de-inline destructors | Yuri Kunde Schlesner | 2015-05-07 | 1 | -1/+2 |
| | |||||
* | Services: Initialize all state variables at bootup. | bunnei | 2015-05-02 | 1 | -2/+5 |
| | |||||
* | Services: Stubs and minor changes | purpasmart96 | 2015-04-03 | 1 | -2/+2 |
| | |||||
* | Services: Moved the PTM and APT services to their own folder | Subv | 2015-03-04 | 1 | -0/+76 |
This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands. |