Remove kprintf from test

This commit is contained in:
Jōshin 2023-12-14 16:58:48 -05:00
parent 21b4d218d7
commit e9a9da0936
No known key found for this signature in database

View file

@ -19,7 +19,6 @@
#include "libc/calls/calls.h"
#include "libc/calls/struct/stat.h"
#include "libc/errno.h"
#include "libc/intrin/kprintf.h"
#include "libc/limits.h"
#include "libc/mem/gc.h"
#include "libc/mem/gc.internal.h"
@ -148,8 +147,6 @@ static void *pthread_main(void *ptr) {
struct State children[2];
int fd, rc;
kprintf("pthread_main depth:%d fd:%d\n", s->depth, s->fd);
fd = s->fd;
if (s->depth < 3) {
for (int i = 0; i < 2; ++i) {