Use .clang-tidy and remove madvise DO_FORK/DONT_FORK calls

This commit causes Android Studio to use the .clang-tidy file for configuration and removes madvise DO_FORK/DONT_FORK calls as they cause problems on many devices and are mostly unnecessary.
This commit is contained in:
◱ PixelyIon
2020-01-12 02:11:54 +05:30
committed by ◱ PixelyIon
parent 81dba3da4b
commit 493a1a93ec
4 changed files with 21 additions and 27 deletions

View File

@ -49,11 +49,5 @@ namespace skyline::kernel {
* @param pid The PID of the thread
*/
void KillThread(pid_t pid);
/**
* @brief Handles a particular SuperVisor Call
* @param svc The ID of the SVC to be called
*/
void SvcHandler(const u16 svc);
};
}