fixing pf, again

This commit is contained in:
RaphProductions 2025-05-09 16:01:25 +02:00
parent 4309b666a4
commit f27e0a240c
11 changed files with 35 additions and 12 deletions

View file

@ -2,10 +2,15 @@
#include "sys/gfx/flanterm/flanterm.h"
#include <stdarg.h>
#include <sys/printf.h>
#include <lib/spinlock.h>
extern struct flanterm_context *ft_ctx;
static spinlock_t log_lock = {0};
void log(char *format, ...) {
//spinlock_acquire(&log_lock);
// TODO: replace this call with a call to printf() when the RTC is implemented.
char *date = "1970-01-01 00:00:00 | ";
int i2 = 0; for (i2; date[i2] != 0; i2++);;
@ -35,4 +40,6 @@ void log(char *format, ...) {
outb(0xE9, buf[i]);
}
//spinlock_release(&log_lock);
}