mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-26 08:27:38 +00:00
16 lines
221 B
C
16 lines
221 B
C
|
/* post_fs.c - post-fs actions
|
||
|
*/
|
||
|
|
||
|
#include <unistd.h>
|
||
|
|
||
|
#include "utils.h"
|
||
|
#include "daemon.h"
|
||
|
|
||
|
void post_fs(int client) {
|
||
|
// ack
|
||
|
write_int(client, 0);
|
||
|
// TODO: Do something
|
||
|
close(client);
|
||
|
unblock_boot_process();
|
||
|
}
|