Skip to content

Commit

Permalink
Update free.c
Browse files Browse the repository at this point in the history
Signed-off-by: Josef Edwards <joed6834@colorado.edu>
  • Loading branch information
bearycool11 authored Nov 12, 2024
1 parent cb8ef87 commit 911a12d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions free.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@ void pml_logic_loop(void) {
// Check if free.c is present
if (free_c_present) {
// Execute code in free.c
printf("Executing code in free.c...\n");
free_c_execute();
} else {
// Continue with normal logic loop execution
printf("Continuing with normal PML logic loop execution...\n");
pml_logic_loop_continue();
}
}

void main_loop(void) {
while (running) { // Assume 'running' is a flag that controls the main loop
pml_logic_loop();
// Other processing can occur here, if necessary
}
}

0 comments on commit 911a12d

Please sign in to comment.