mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-07-19 13:54:44 -04:00
[GH-ISSUE #849] Bot treats syscall_988 as a fatal error. #83
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Satan86 on GitHub (Feb 25, 2022).
Original GitHub issue: https://github.com/RPCS3/discord-bot/issues/849
Syscall 988 normally gets called by a game when it closes it's process. Rcps3 Bot treats it as a fatal error because before https://github.com/RPCS3/rpcs3/pull/11399 was merged, games would only use this Syscall if something went wrong with them and they had to terminate their own process. Now, that syscall has become regular operation, since games terminate their processes correctly. This has, however, massively increased the amount of logs with this message, even though it isn't harmful. Removing the special logging of this syscall is the best course of action from now on, to avoid confusion from helpers and end users alike. Removing the "PPU desync" message should also be done in this case.

Bot treats syscall_988 as a fatal error.to [GH-ISSUE #849] Bot treats syscall_988 as a fatal error.