mostly done; helgrind issue not fixed

This commit is contained in:
Semere M. Mebrahtom 2026-04-02 19:53:23 +02:00
parent b1b32525a5
commit 6d65af5288
Signed by: semere
GPG key ID: 7FC937214DF30488
9 changed files with 381 additions and 231 deletions

60
coders/monitor.c Normal file
View file

@ -0,0 +1,60 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* monitor.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: semebrah <semebrah@student.42berlin.de> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/03/22 18:07:14 by semebrah #+# #+# */
/* Updated: 2026/03/22 18:07:31 by semebrah ### ########.fr */
/* */
/* ************************************************************************** */
#include "codexion.h"
static void stop_prog(t_state *state, int i)
{
pthread_mutex_lock(&state->over_mutex);
state->is_over = true;
pthread_mutex_unlock(&state->over_mutex);
print("%ld %d has burned out\n", state, state->coders[i].idx);
}
bool is_over(t_state *state)
{
bool is_over;
pthread_mutex_lock(&state->over_mutex);
is_over = state->is_over;
pthread_mutex_unlock(&state->over_mutex);
return (is_over);
}
void *monitor_routine(void *param)
{
t_state *state;
int i;
int done_coders;
t_args args;
state = param;
args = state->args;
done_coders = 0;
while (done_coders < args.number_of_coders && !is_over(state))
{
done_coders = 0;
i = -1;
while (++i < state->args.number_of_coders)
{
pthread_mutex_lock(&state->coders[i].info_mutex);
if (state->coders[i].compiles_done == args.compiles_todo)
done_coders++;
pthread_mutex_unlock(&state->coders[i].info_mutex);
if (now()
- state->coders[i].last_compile >= state->args.time_to_burnout)
return (stop_prog(state, i), NULL);
}
usleep(1000);
}
return (NULL);
}