> > It's not possible to trace all calls to a function
> > accross all processes as
> > they come and go, but what you could do is examine
> > what system calls are
> > made by svc_register() and then use the syscall
> > provider to gather the data
> > you need.
> > 
> > Adam
> > 
> 
> How do I determine the system calls that are made by
> svc_register()? 
> 
> -- prasad


You could always write a program that calls it, and truss that program.
if you put a write(1,"-----",5)  or something recognizable like that
right before the call, it should be easy to spot in the output and ignore
everything before that (i.e. all the dynamic linking at startup and such).


--
This message posted from opensolaris.org
_______________________________________________
dtrace-discuss mailing list
[email protected]

Reply via email to