summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-1/+1
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* service: Reduce header include overheadMorph2021-10-071-1/+0
|
* service: time: Setup the network clock with the local clock contextMorph2021-04-081-1/+1
| | | | Setting the network time allows some time based events using the network clock to not reset.
* core: hle: kernel: Rename Thread to KThread.bunnei2021-01-291-1/+1
|
* service: Eliminate usages of the global system instanceLioncash2020-11-271-2/+2
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* service: time: Update current time with changes to RTC setting.bunnei2020-10-131-8/+1
| | | | - This can be used to advance time, e.g. for Pokemon Sword/Shield pokejobs.
* service: time: Implement CalculateStandardUserSystemClockDifferenceByUser.bunnei2020-04-151-0/+1
| | | | - Used by Animal Crossing: New Horizons.
* services: time: Implement CalculateSpanBetween.bunnei2020-03-271-0/+1
| | | | - Used by Super Smash Bros. Ultimate.
* service: time: Implement GetStandardLocalSystemClock.bunnei2020-01-051-0/+1
|
* service: time: Implement GetClockSnapshotFromSystemClockContext.bunnei2020-01-041-0/+1
|
* service: time: Implement IsStandardNetworkSystemClockAccuracySufficient.bunnei2020-01-041-0/+1
|
* service: time: Rewrite implementation of glue services.bunnei2020-01-041-76/+24
|
* Deglobalize System: TimeDavid Marcec2019-09-221-1/+3
|
* Addressed issuesDavid Marcec2019-06-261-0/+1
|
* Implement Time::GetSharedMemoryNativeHandleDavid Marcec2019-06-251-2/+8
| | | | | | | | | | | | | | | This PR attempts to implement the shared memory provided by GetSharedMemoryNativeHandle. There is still more work to be done however that requires a rehaul of the current time module to handle clock contexts. This PR is mainly to get the basic functionality of the SharedMemory working and allow the use of addition to it whilst things get improved on. Things to note: Memory Barriers are used in the SharedMemory and a better solution would need to be done to implement this. Currently in this PR Iā€™m faking the memory barriers as everything is sync and single threaded. They work by incrementing the counter and just populate the two data slots. On data reading, it will read the last added data. Specific values in the shared memory would need to be updated periodically. This isn't included in this PR since we don't actively do this yet. In a later PR when time is refactored this should be done. Finally, as we don't handle clock contexts. When time is refactored, we will need to update the shared memory for specific contexts. This PR does this already however since the contexts are all identical and not separated. We're just updating the same values for each context which in this case is empty. Tiime:SetStandardUserSystemClockAutomaticCorrectionEnabled, Time:IsStandardUserSystemClockAutomaticCorrectionEnabled are also partially implemented in this PR. The reason the implementation is partial is because once again, a lack of clock contexts. This will be improved on in a future PR. This PR closes issue #2556
* service/time: Fill in some structures and remove padding where not necessaryLioncash2018-12-301-5/+7
|
* Implemented CalculateStandardUserSystemClockDifferenceByUserDavid Marcec2018-11-171-0/+1
| | | | Seems pokemon calls this sometimes and it caused "random crashes"
* Added maybe_unusedDavid Marcec2018-11-101-0/+1
|
* Implement GetClockSnapshotDavid Marcec2018-11-091-0/+18
| | | | Needed by megaman 11
* hle/service: Default constructors and destructors in the cpp file where applicableLioncash2018-09-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a destructor isn't defaulted into a cpp file, it can cause the use of forward declarations to seemingly fail to compile for non-obvious reasons. It also allows inlining of the construction/destruction logic all over the place where a constructor or destructor is invoked, which can lead to code bloat. This isn't so much a worry here, given the services won't be created and destroyed frequently. The cause of the above mentioned non-obvious errors can be demonstrated as follows: ------- Demonstrative example, if you know how the described error happens, skip forwards ------- Assume we have the following in the header, which we'll call "thing.h": \#include <memory> // Forward declaration. For example purposes, assume the definition // of Object is in some header named "object.h" class Object; class Thing { public: // assume no constructors or destructors are specified here, // or the constructors/destructors are defined as: // // Thing() = default; // ~Thing() = default; // // ... Some interface member functions would be defined here private: std::shared_ptr<Object> obj; }; If this header is included in a cpp file, (which we'll call "main.cpp"), this will result in a compilation error, because even though no destructor is specified, the destructor will still need to be generated by the compiler because std::shared_ptr's destructor is *not* trivial (in other words, it does something other than nothing), as std::shared_ptr's destructor needs to do two things: 1. Decrement the shared reference count of the object being pointed to, and if the reference count decrements to zero, 2. Free the Object instance's memory (aka deallocate the memory it's pointing to). And so the compiler generates the code for the destructor doing this inside main.cpp. Now, keep in mind, the Object forward declaration is not a complete type. All it does is tell the compiler "a type named Object exists" and allows us to use the name in certain situations to avoid a header dependency. So the compiler needs to generate destruction code for Object, but the compiler doesn't know *how* to destruct it. A forward declaration doesn't tell the compiler anything about Object's constructor or destructor. So, the compiler will issue an error in this case because it's undefined behavior to try and deallocate (or construct) an incomplete type and std::shared_ptr and std::unique_ptr make sure this isn't the case internally. Now, if we had defaulted the destructor in "thing.cpp", where we also include "object.h", this would never be an issue, as the destructor would only have its code generated in one place, and it would be in a place where the full class definition of Object would be visible to the compiler. ---------------------- End example ---------------------------- Given these service classes are more than certainly going to change in the future, this defaults the constructors and destructors into the relevant cpp files to make the construction and destruction of all of the services consistent and unlikely to run into cases where forward declarations are indirectly causing compilation errors. It also has the plus of avoiding the need to rebuild several services if destruction logic changes, since it would only be necessary to recompile the single cpp file.
* hle/service: Make constructors explicit where applicableLioncash2018-07-191-1/+1
| | | | | Prevents implicit construction and makes these lingering non-explicit constructors consistent with the rest of the other classes in services.
* Service/time: implement posix time to calendar conversionmailwl2018-06-011-10/+18
|
* service: Use nested namespace specifiers where applicableLioncash2018-04-201-4/+2
| | | | Tidies up namespace declarations
* time: Add GetStandardLocalSystemClock, used by libnxshinyquagsire232018-02-221-0/+1
|
* time: Implement ISteadyClock::GetCurrentTimePoint.bunnei2018-01-261-0/+6
|
* time: Stub GetSystemClockContext function.bunnei2018-01-251-0/+7
|
* time: Stub out GetTotalLocationNameCount and some cleanup.bunnei2018-01-191-1/+1
|
* time: Refactor time:* to use a single shared moduleRozlette2018-01-181-9/+13
|
* TIME: consolidate time:* interfaces, stub functions and structsRozlette2018-01-171-0/+36
|
* time: Implement GetStandardUserSystemClock, GetCurrentTime.bunnei2018-01-151-0/+16