From afc2b4d4766b0e4ee8519ac6fcd98353d3864322 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Thu, 4 Jul 2024 20:09:51 +0200 Subject: TCP: Allow delay for sends This is not at all optimal for applications that already buffer their data but can have a huge impact on those that don't. Applications that don't wish to use this should disable this for their socket. --- kernel/timer.c | 1 - 1 file changed, 1 deletion(-) (limited to 'kernel/timer.c') diff --git a/kernel/timer.c b/kernel/timer.c index 2121462..21020b0 100644 --- a/kernel/timer.c +++ b/kernel/timer.c @@ -19,7 +19,6 @@ void timer_start_init(void) { enable_interrupts(); cmos_init(); cmos_start_call(1, &has_unix_time, &start_unix_time); - enable_interrupts(); } void timer_wait_for_init(void) { -- cgit v1.2.3