David Marcec 
							
						 
					 
					
						
						
						
						
							
						
						
							6ca20ad7ba 
							
						 
					 
					
						
						
							
							Addressed issues  
						
						
						
						
					 
					
						2019-06-17 08:17:26 +10:00 
						 
				 
			
				
					
						
							
							
								Fernando Sahmkow 
							
						 
					 
					
						
						
						
						
							
						
						
							90792cdb6e 
							
						 
					 
					
						
						
							
							Core_Timing: Make core_timing threadsafe by default.  
						
						... 
						
						
						
						The old implementation had faulty Threadsafe methods where events could
be missing. This implementation unifies unsafe/safe methods and makes
core timing thread safe overall. 
						
						
					 
					
						2019-06-16 14:14:35 -04:00 
						 
				 
			
				
					
						
							
							
								David Marcec 
							
						 
					 
					
						
						
						
						
							
						
						
							50e3269f3b 
							
						 
					 
					
						
						
							
							Signalled accumulated_suspended_tick_changed_event on creation based on RE  
						
						
						
						
					 
					
						2019-06-16 22:18:54 +10:00 
						 
				 
			
				
					
						
							
							
								David Marcec 
							
						 
					 
					
						
						
						
						
							
						
						
							5fb6781c61 
							
						 
					 
					
						
						
							
							Cleanup  
						
						
						
						
					 
					
						2019-06-16 20:18:35 +10:00 
						 
				 
			
				
					
						
							
							
								David Marcec 
							
						 
					 
					
						
						
						
						
							
						
						
							335127af69 
							
						 
					 
					
						
						
							
							Impl'd IsUserAccountSwitchLocked, SetAudioOutVolume, GetAudioOutVolume & Partial impl of GetAccumulatedSuspendedTickChangedEvent  
						
						... 
						
						
						
						IPC-100 was changed to InitializeApplicationInfoOld instead of InitializeApplicationInfo. IPC-150 makes an indentical call to IPC-100 however does extra processing. They should not have the same name as it's quite confusing to debug. 
						
						
					 
					
						2019-06-16 19:06:33 +10:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c140b6ae2c 
							
						 
					 
					
						
						
							
							Merge pull request  #2581  from lioncash/hex  
						
						... 
						
						
						
						common/hex_util: Combine HexVectorToString() and HexArrayToString() 
						
						
					 
					
						2019-06-15 16:47:13 -04:00 
						 
				 
			
				
					
						
							
							
								bunnei 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0360c40e90 
							
						 
					 
					
						
						
							
							Merge pull request  #2582  from lioncash/reserved  
						
						... 
						
						
						
						file_sys/ips_layer: Remove unnecessary reserve() call 
						
						
					 
					
						2019-06-14 11:24:18 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a9521c983b 
							
						 
					 
					
						
						
							
							Merge pull request  #2580  from lioncash/redundant  
						
						... 
						
						
						
						kernel/vm_manager: Remove redundant Reset call in destructor 
						
						
					 
					
						2019-06-12 19:26:07 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0f08f2d562 
							
						 
					 
					
						
						
							
							Merge pull request  #2577  from lioncash/fs  
						
						... 
						
						
						
						file_sys/card_image: Minor cleanup 
						
						
					 
					
						2019-06-12 19:23:33 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							18c1d91920 
							
						 
					 
					
						
						
							
							file_sys/ips_layer: Remove unnecessary reserve() call  
						
						... 
						
						
						
						Given 'replace' is assigned to on the following line, this isn't
necessary, given the underlying data is going to be overwritten
entirely. 
						
						
					 
					
						2019-06-12 18:12:45 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a62088539e 
							
						 
					 
					
						
						
							
							common/hex_util: Combine HexVectorToString() and HexArrayToString()  
						
						... 
						
						
						
						These can be generified together by using a concept type to designate
them. This also has the benefit of not making copies of potentially very
large arrays. 
						
						
					 
					
						2019-06-12 17:54:05 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c7daddb715 
							
						 
					 
					
						
						
							
							file_sys/card_image: Remove obsolete TODO  
						
						... 
						
						
						
						We already support Rev 1+. 
						
						
					 
					
						2019-06-12 16:52:19 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0af3b4d9f4 
							
						 
					 
					
						
						
							
							kernel/vm_manager: Remove redundant Reset call in destructor  
						
						... 
						
						
						
						This is performing more work than would otherwise be necessary during
VMManager's destruction. All we actually want to occur in this scenario
is for any allocated memory to be freed, which will happen automatically
as the VMManager instance goes out of scope.
Anything else being done is simply unnecessary work. 
						
						
					 
					
						2019-06-12 16:10:00 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a602bcaaf8 
							
						 
					 
					
						
						
							
							file_sys/nca_metadata: Update CNMT structures  
						
						... 
						
						
						
						Names a few more entries in relevant structures. Information based off
SwitchBrew and my own RE. 
						
						
					 
					
						2019-06-10 23:51:06 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7bdef6106e 
							
						 
					 
					
						
						
							
							file_sys/card_image: Deduplicate casts within AddNCAFromPartition()  
						
						... 
						
						
						
						Makes for nicer reading. 
						
						
					 
					
						2019-06-10 23:27:14 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							81d361d9f8 
							
						 
					 
					
						
						
							
							file_sys/card_image: Make bracing consistent  
						
						... 
						
						
						
						Makes for more consistent reading. 
						
						
					 
					
						2019-06-10 23:27:13 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e34368249f 
							
						 
					 
					
						
						
							
							file_sys/card_image: Assign collapsed NCA contents directly to ncas member  
						
						... 
						
						
						
						Same thing, significantly less noisy. 
						
						
					 
					
						2019-06-10 23:27:13 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							288d027e89 
							
						 
					 
					
						
						
							
							file_sys/card_image: Deduplicate type cast  
						
						... 
						
						
						
						Same thing, less duplication. We can also std::move raw into the
PartitionFilesystem constructor. 
						
						
					 
					
						2019-06-10 23:27:05 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							825ffd7b1f 
							
						 
					 
					
						
						
							
							file_sys/card_image: Get rid of a magic number  
						
						... 
						
						
						
						We can just use the size of the array to dehardcode it. 
						
						
					 
					
						2019-06-10 22:58:08 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							bf35138d1d 
							
						 
					 
					
						
						
							
							file_sys/card_image: Use std::array deduction guides  
						
						... 
						
						
						
						Same thing, less code. 
						
						
					 
					
						2019-06-10 22:57:53 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							fc0bf91a96 
							
						 
					 
					
						
						
							
							kernel: Differentiate kernel and user processes when picking ID  
						
						... 
						
						
						
						This allows kernel internal type processes to be assigned IDs in the KIP range while userland processes are assigned in the user range. 
						
						
					 
					
						2019-06-10 00:28:33 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							b957a4862f 
							
						 
					 
					
						
						
							
							nsp: Correct status codes for extracted NSPs  
						
						... 
						
						
						
						Avoids all extracted NSPs being marked as error file type because they don't have program NCAs. 
						
						
					 
					
						2019-06-10 00:21:41 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							1c75945dc4 
							
						 
					 
					
						
						
							
							nsp: Use title ID from NPDM metadata for extracted type NSPs  
						
						... 
						
						
						
						Avoids 0 being used as title ID for all extracted NSPs. 
						
						
					 
					
						2019-06-10 00:19:23 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							425cdf946c 
							
						 
					 
					
						
						
							
							arm_dynarmic: Check if jit is nullptr when preparing reschedule  
						
						... 
						
						
						
						Prevents crash with multiprocess loading. 
						
						
					 
					
						2019-06-10 00:14:25 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							364932df3a 
							
						 
					 
					
						
						
							
							Merge pull request  #2571  from lioncash/ref  
						
						... 
						
						
						
						kernel/process: Make Create()'s name parameter be taken by value 
						
						
					 
					
						2019-06-09 20:43:57 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							fea6568955 
							
						 
					 
					
						
						
							
							kernel/process: Make Create()'s name parameter be taken by value  
						
						... 
						
						
						
						Makes the interface more flexible in terms of how Create() may be
called, while still allowing the parameter itself to be moved into. 
						
						
					 
					
						2019-06-09 18:47:37 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							3f87664d8f 
							
						 
					 
					
						
						
							
							kernel/svc: Implement TotalMemoryUsedWithoutMmHeap/TotalMemoryAvailableWithoutMmHeap  
						
						... 
						
						
						
						Given we don't currently implement the personal heap yet, the existing
memory querying functions are essentially doing what the memory querying
types introduced in 6.0.0 do.
So, we can build the necessary machinery over the top of those and just
use them as part of info types. 
						
						
					 
					
						2019-06-09 18:22:30 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							c1a8f684df 
							
						 
					 
					
						
						
							
							kernel/svc: Amend naming for TotalMemoryUsage in svcGetInfo()  
						
						... 
						
						
						
						Disambiguates and makes the name a little more consistent with
TotalPhysicalMemoryUsed. 
						
						
					 
					
						2019-06-09 18:12:05 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							81b1102090 
							
						 
					 
					
						
						
							
							kernel/svc: Remove duplicate enum entry in svcGetInfo()  
						
						
						
						
					 
					
						2019-06-09 18:08:37 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							11f2f0f45c 
							
						 
					 
					
						
						
							
							constants: Extract backup JPEG used by account services  
						
						
						
						
					 
					
						2019-06-07 17:46:57 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							de33ad25f5 
							
						 
					 
					
						
						
							
							Merge pull request  #2514  from ReinUsesLisp/opengl-compat  
						
						... 
						
						
						
						video_core: Drop OpenGL core in favor of OpenGL compatibility 
						
						
					 
					
						2019-06-07 17:23:25 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							9db119f8a2 
							
						 
					 
					
						
						
							
							kernel_executable: Optimize BLZ decompression  
						
						
						
						
					 
					
						2019-06-06 19:20:15 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							adb8a9152b 
							
						 
					 
					
						
						
							
							Merge pull request  #2549  from lioncash/header  
						
						... 
						
						
						
						kernel/process: Remove unused boost header include 
						
						
					 
					
						2019-06-06 14:31:46 -04:00 
						 
				 
			
				
					
						
							
							
								bunnei 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							03d9bbaa90 
							
						 
					 
					
						
						
							
							Merge pull request  #2551  from lioncash/dtor  
						
						... 
						
						
						
						service/ns: Add missing override specifiers 
						
						
					 
					
						2019-06-06 10:37:28 -04:00 
						 
				 
			
				
					
						
							
							
								bunnei 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e4fea833d4 
							
						 
					 
					
						
						
							
							Merge pull request  #2419  from DarkLordZach/srv-lr-iface  
						
						... 
						
						
						
						lr: Add command handler skeletons for Open*LocationResolver 
						
						
					 
					
						2019-06-05 18:05:50 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							8304aaf282 
							
						 
					 
					
						
						
							
							service/ns: Add missing override specifiers  
						
						
						
						
					 
					
						2019-06-05 16:20:24 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							799302bc9d 
							
						 
					 
					
						
						
							
							Merge pull request  #2526  from lioncash/global  
						
						... 
						
						
						
						core/telemetry_session: Remove usages of the global system accessor 
						
						
					 
					
						2019-06-05 15:57:48 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							81e09bb121 
							
						 
					 
					
						
						
							
							Merge pull request  #2545  from lioncash/timing  
						
						... 
						
						
						
						core/core_timing_util: Use std::chrono types for specifying time units 
						
						
					 
					
						2019-06-05 15:52:37 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2beaaa35c5 
							
						 
					 
					
						
						
							
							Merge pull request  #2510  from SciresM/desired_language  
						
						... 
						
						
						
						Implement/Fix IApplicationFunctions::GetDesiredLanguage 
						
						
					 
					
						2019-06-05 15:39:33 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							19dcb50692 
							
						 
					 
					
						
						
							
							kernel/process: Remove unused boost header include  
						
						... 
						
						
						
						Boost headers typically include a lot of other headers, so removing this
can prevent a bit of unnecessary compiler churn when building. 
						
						
					 
					
						2019-06-05 14:03:29 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							c417b4fe28 
							
						 
					 
					
						
						
							
							game_list: Accept *.kip as a file extension of executables  
						
						
						
						
					 
					
						2019-06-05 00:33:05 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							ce9f7ac4f2 
							
						 
					 
					
						
						
							
							loader: Add recognition for KIP file type  
						
						
						
						
					 
					
						2019-06-05 00:22:07 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							a76bd49268 
							
						 
					 
					
						
						
							
							loader: Add KIP and INI file parser-specific errors  
						
						
						
						
					 
					
						2019-06-05 00:21:44 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							c3548967b1 
							
						 
					 
					
						
						
							
							loader: Add AppLoader_KIP for KIP files  
						
						
						
						
					 
					
						2019-06-05 00:21:17 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							b550a01f74 
							
						 
					 
					
						
						
							
							program_metadata: Add function to load meta from raw parameters  
						
						... 
						
						
						
						Needed for KIP loading as KIPs do not have an NPDM but do have the essential parts of the data within. 
						
						
					 
					
						2019-06-05 00:20:26 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							0f37096820 
							
						 
					 
					
						
						
							
							partition_data_manager: Remove KIP processing and use FileSys  
						
						... 
						
						
						
						Previously, this TU contained the necessary headers to parse KIP/INI but now it should just use the FileSys class. 
						
						
					 
					
						2019-06-05 00:19:29 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Hilman 
							
						 
					 
					
						
						
						
						
							
						
						
							421c3e831a 
							
						 
					 
					
						
						
							
							file_sys: Add classes to parse KIP1 and INI1 files  
						
						
						
						
					 
					
						2019-06-05 00:18:25 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							2548661c08 
							
						 
					 
					
						
						
							
							core/core_timing_util: Amend casing of cyclesTo* functions  
						
						... 
						
						
						
						Makes the casing consistent with all of our general function naming
conventions. 
						
						
					 
					
						2019-06-04 20:31:46 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							42f5fd0ab3 
							
						 
					 
					
						
						
							
							core/core_timing_util: Use std::chrono types for specifying time units  
						
						... 
						
						
						
						Makes the interface more type-safe and consistent in terms of return
values. 
						
						
					 
					
						2019-06-04 20:31:24 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							79189c7e3e 
							
						 
					 
					
						
						
							
							core/core_timing_utils: Simplify overload set  
						
						... 
						
						
						
						Removes unused overloads, simplifying the overall interface,
deduplicating some code. 
						
						
					 
					
						2019-06-04 19:44:05 -04:00