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