error searching
This commit is contained in:
parent
7987f42dc0
commit
59d22a1bba
1 changed files with 3 additions and 3 deletions
|
@ -214,9 +214,9 @@ void* server_task(void* e)
|
|||
|
||||
tmp1 = get_clock_tick();
|
||||
|
||||
for (n = 0; n < 1024 ; n++)
|
||||
for (n = 0; n < 1024*1024*4 ; n++)
|
||||
{
|
||||
if (!(n%10))
|
||||
if (!(n%100))
|
||||
kprintf("%d-",n);
|
||||
send(newsockfd,buffer,256,0);
|
||||
// if (!(n%100))
|
||||
|
@ -281,7 +281,7 @@ void* client_task(void* e)
|
|||
/* spew-out the results and bail out of here! */
|
||||
kprintf("%s\n", dir);
|
||||
|
||||
for (n = 0; n <1024; n++)
|
||||
for (n = 0; n <1024*1024*4; n++)
|
||||
{
|
||||
recv(sd,dir,sizeof(dir),0);
|
||||
// udelay(100);
|
||||
|
|
Loading…
Add table
Reference in a new issue