| 9 | void __attribute__((weak)) userAppExit(void); |
| 10 | |
| 11 | void __attribute__((weak)) __appExit(void) |
| 12 | { |
| 13 | if (&userAppExit) userAppExit(); |
| 14 | |
| 15 | // Exit services |
| 16 | archiveUnmountAll(); |
| 17 | fsExit(); |
| 18 | |
| 19 | hidExit(); |
| 20 | aptExit(); |
| 21 | srvExit(); |
| 22 | } |
nothing calls this directly
no test coverage detected