Fix svcSetHeapSize note

This commit is contained in:
MasaGratoR 2025-09-19 23:13:52 +02:00 committed by GitHub
parent f6e45096aa
commit 982545d4de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -296,7 +296,7 @@ typedef enum {
/** /**
* @brief Set the process heap to a given size. It can both extend and shrink the heap. * @brief Set the process heap to a given size. It can both extend and shrink the heap.
* @param[out] out_addr Variable to which write the address of the heap (which is randomized and fixed by the kernel) * @param[out] out_addr Variable to which write the address of the heap (which is randomized and fixed by the kernel)
* @param[in] size Size of the heap, must be a multiple of 0x200000 and [2.0.0+] less than 0x18000000. * @param[in] size Size of the heap, must be a multiple of 0x200000 and [2.0.0+] less than 0x100000000.
* @return Result code. * @return Result code.
* @note Syscall number 0x01. * @note Syscall number 0x01.
*/ */