/* late_start.c - late_start service actions */ #include #include #include "daemon.h" void late_start(int client) { // ack write_int(client, 0); // TODO: Do something close(client); // Wait till the full patch is done pthread_join(sepol_patch, NULL); }