diff loader/setup_FS.c @ 340:1f7c824033fb

less, and more informal printfs
author arpi_esp
date Wed, 11 Apr 2001 01:38:57 +0000
parents a2c9731b2e01
children 72cacd3b8f30
line wrap: on
line diff
--- a/loader/setup_FS.c	Wed Apr 11 00:47:05 2001 +0000
+++ b/loader/setup_FS.c	Wed Apr 11 01:38:57 2001 +0000
@@ -56,11 +56,15 @@
 
 void setup_FS_Segment()
 {
+#ifdef DETAILED_OUT
     printf("Setup FS...");fflush(stdout);
+#endif
     __asm__ __volatile__(
 	"movl %0,%%eax; movw %%ax, %%fs" : : "i" (TEB_SEL)
     );
+#ifdef DETAILED_OUT
     printf("OK!\n");
+#endif
 }