remove useless prints

Signed-off-by: Joseph Umana <joseph@josephumana.com>
This commit is contained in:
Joseph Umana 2025-07-25 17:05:11 -04:00
parent d8d3d26f69
commit 9d9ee904ae
Signed by: joeuint
GPG key ID: 05A7B3877ADEC27C

2
main.c
View file

@ -56,7 +56,6 @@ void execCommand(char* command) {
}
void getExecStats(pid_t pid, RunResult* result) {
puts("getExecStats");
struct rusage usage;
time_t start = time(NULL);
@ -76,7 +75,6 @@ void getExecStats(pid_t pid, RunResult* result) {
}
void setExecFlags(RunResult* result, time_t runtimeSeconds, size_t memoryLimit) {
printf("%d\n", result->exitCode);
if (result->exitCode == 69) {
result->flags |= Nice;
strcpy(result->feedback, "Nice!");