lwip-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-devel] [task #6827] etharp could need some tuning


From: Simon Goldschmidt
Subject: [lwip-devel] [task #6827] etharp could need some tuning
Date: Tue, 19 Jun 2007 16:25:10 +0000
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4

Follow-up Comment #38, task #6827 (project lwip):

OK, checked it in.

One question: etharp currently uses code like this to copy ethernet
addresses:

k = 6;
while(k > 0) {
 k--;
 ...;
}

Is that faster than

for (k = 0; k < 6; k++) {
 ...;
}

or why is it that way? I didn't change it since the difference was not
measurable on my embedded target...

    _______________________________________________________

Reply to this item at:

  <http://savannah.nongnu.org/task/?6827>

_______________________________________________
  Nachricht geschickt von/durch Savannah
  http://savannah.nongnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]