From ad78d69f48cc80ab8571e23f22f95305f8e79fb8 Mon Sep 17 00:00:00 2001 From: leitner Date: Sat, 12 May 2001 03:22:28 +0000 Subject: [PATCH] read test --- Makefile | 2 +- t.c | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 90fcb79..3c4ed22 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ VPATH=str:byte:fmt:scan:uint:open:stralloc:unix:socket:buffer CC=egcc #CFLAGS=-I. -pipe -Wall -Os -march=pentiumpro -fomit-frame-pointer -fschedule-insns2 -Wall -CFLAGS=-I. -I../dietlibc/include -pipe -Wall -Os -march=athlon -mcpu=athlon -malign-functions=2 -fomit-frame-pointer -fschedule-insns2 +CFLAGS=-I. -I../dietlibc/include -pipe -Wall -Os -march=athlon -mcpu=athlon -malign-functions=2 -fomit-frame-pointer -fschedule-insns2 -g #CFLAGS=-I../dietlibc/include -I. -pipe -Wall -Os -march=pentiumpro -mcpu=athlon -fomit-frame-pointer -fschedule-insns2 -Wall #CFLAGS=-I../dietlibc/include -pipe -Os -march=pentiumpro -mcpu=pentiumpro -fomit-frame-pointer -fschedule-insns2 -Wall diff --git a/t.c b/t.c index 7aaa620..dbca921 100644 --- a/t.c +++ b/t.c @@ -7,19 +7,26 @@ #include "socket.h" #include "buffer.h" #include "ip4.h" +#include #define rdtscl(low) \ __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx") int main(int argc,char* argv[]) { + char c; + printf("%d\n",buffer_getc(buffer_0,&c)); + printf("%c\n",c); +#if 0 char buf[100]="01234567890123456789012345678901234567890123456789"; long a,b,c; +#endif #if 0 buf[ip4_fmt(buf,ip4loopback)]=0; buffer_puts(buffer_1small,buf); buffer_flush(buffer_1small); #endif +#if 0 buf[0]=0; buf[fmt_8long(buf,0)]=0; puts(buf); @@ -28,6 +35,7 @@ int main(int argc,char* argv[]) { rdtscl(b); /*byte_zero_djb(buf,j); */ // printf("\n%lu %d\n",b-a,c); +#endif #if 0 buffer_puts(buffer_1small,"hello, world\n"); buffer_flush(buffer_1small);