public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* doubt about "switch" - default case in af_inet.c
@ 2004-12-09 13:57 Phani Kandula
  2004-12-09 14:09 ` linux-os
  2004-12-16 18:43 ` Bill Davidsen
  0 siblings, 2 replies; 3+ messages in thread
From: Phani Kandula @ 2004-12-09 13:57 UTC (permalink / raw)
  To: linux-kernel

Hi all,

I'm a newbie to the Linux. I'm using 2.6.8 kernel. 
In /usr/src/linux/net/ipv4/af_inet.c I came across this...
 <code>
     switch (sock->state) {
     default:
     //do something..
         goto out;
     case SS_CONNECTED:
     //do something..
         goto out;
     case SS_CONNECTING:
     //do something..
         break;
     case SS_UNCONNECTED:
     //do something..
         break;
     }
 </code>

Is there any advantage in having 'default' as the first case? 
My understanding is that it will be useful only when 'default' is the
most likely case (in general).

Even then, my doubt: How will compiler (say gcc) implement 'default'
as the first value? Program is supposed to see all the cases and then
decide 'default'. Is this correct?

So, is this the best way to do it? please clarify..

Thanks,
Phani

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-12-16 18:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-09 13:57 doubt about "switch" - default case in af_inet.c Phani Kandula
2004-12-09 14:09 ` linux-os
2004-12-16 18:43 ` Bill Davidsen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox