On 07/01/2010 01:41, Gopi Desaboyina wrote:
Rob. Thanks for your reply. I even read your blog on that oracle listener and even tried dtrace script 
you gave. which one is max que size in the o/p ? in the o/p most of the time i'm getting<exec 
name>  <pid>  <0>  <2>  etc.

dtrace -n 
syscall::listen:entry'{trace(execname);trace(pid);trace(arg0);trace(arg1);}

It means that your applications requested a backlog size of 2.
So no matter what system wide limit you set you actual queue size is 2.
Basically an application can set backlog to 0 which iirc means the maximum currently allowed size or it can set it to any other value as long as it is not bigger than the current system limit.

What application is it?

--
Robert Milkowski
http://milek.blogspot.com

_______________________________________________
dtrace-discuss mailing list
dtrace-discuss@opensolaris.org

Reply via email to