summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel: Eliminate kernel global stateLioncash2018-08-291-4/+6
| | | | | | | | | | | | | | | | | | | | | | As means to pave the way for getting rid of global state within core, This eliminates kernel global state by removing all globals. Instead this introduces a KernelCore class which acts as a kernel instance. This instance lives in the System class, which keeps its lifetime contained to the lifetime of the System class. This also forces the kernel types to actually interact with the main kernel instance itself instead of having transient kernel state placed all over several translation units, keeping everything together. It also has a nice consequence of making dependencies much more explicit. This also makes our initialization a tad bit more correct. Previously we were creating a kernel process before the actual kernel was initialized, which doesn't really make much sense. The KernelCore class itself follows the PImpl idiom, which allows keeping all the implementation details sealed away from everything else, which forces the use of the exposed API and allows us to avoid any unnecessary inclusions within the main kernel header.
* 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.
* Rename logging macro back to LOG_*James Rowe2018-07-031-9/+9
|
* Stub IUser::AttachAvailabilityChangeEventmailwl2018-06-061-5/+23
|
* Correct function resultsmailwl2018-06-041-4/+16
|
* Service/nfp:user : stub some functions.mailwl2018-06-041-6/+70
| | | | Used by Zelda: BoTW
* Updated nfp with more service namesHexagon122018-05-131-24/+24
|
* Switched to NGLOG_WARNINGDavid Marcec2018-04-271-2/+2
|
* GetIUserInterface->CreateUserInterface, Added todos and stub logs. Playreport->PlayReport.David Marcec2018-04-233-3/+28
|
* Implemented GetIUserInterface properly, Playreport and SSL::SetInterfaceVersion. Fixed ipc issues with IAudioDevice(wrong ids)David Marcec2018-04-223-4/+21
|
* service: Use nested namespace specifiers where applicableLioncash2018-04-204-16/+8
| | | | Tidies up namespace declarations
* service: Add NFP module interface.bunnei2018-03-304-0/+93
service: Initialize NFP service. Log: Add NFP service as a log subtype.