Mark arguments to svcCreateProcess as const.

This commit is contained in:
Michael Scire 2019-06-27 17:29:15 -07:00 committed by fincs
parent e1e2a05a34
commit a7522f1d4c

View File

@ -1163,7 +1163,7 @@ Result svcUnmapProcessCodeMemory(Handle proc, u64 dst, u64 src, u64 size);
* @note Syscall number 0x79. * @note Syscall number 0x79.
* @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available. * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
*/ */
Result svcCreateProcess(Handle* out, void* proc_info, u32* caps, u64 cap_num); Result svcCreateProcess(Handle* out, const void* proc_info, const u32* caps, u64 cap_num);
/** /**
* @brief Starts executing a freshly created process. * @brief Starts executing a freshly created process.