Re: Map of functions

2018-12-16 Thread Giovanni Di Maria via Digitalmars-d-learn
Thank you very much. Great!!! Giovanni

Re: Map of functions

2018-12-14 Thread Francesco Mecca via Digitalmars-d-learn
On Friday, 14 December 2018 at 17:45:26 UTC, rjframe wrote: On Fri, 14 Dec 2018 16:33:44 +, Giovanni Di Maria wrote: I need the flow of calls. Thank you Giovanni gprof will do this on Linux/BSD if gdc supports the -pg flag (I don't know whether it would, but assume so) and your

Re: Map of functions

2018-12-14 Thread Giovanni Di Maria via Digitalmars-d-learn
Thank you very much, Fantastic!!! Giovanni

Re: Map of functions

2018-12-14 Thread rjframe via Digitalmars-d-learn
On Fri, 14 Dec 2018 16:33:44 +, Giovanni Di Maria wrote: > > I need the flow of calls. > Thank you Giovanni gprof will do this on Linux/BSD if gdc supports the -pg flag (I don't know whether it would, but assume so) and your application is working. >From code, you'd need to call a trace

Re: Map of functions

2018-12-14 Thread Giovanni Di Maria via Digitalmars-d-learn
Do you really have a nested function print() inside a nested function calculate() inside main()? That is, Hi this is only an example of names of funcions but the structure is this: void main() { // maybe some calls to calculate() } void calculate() { // maybe some calls to

Re: Map of functions

2018-12-14 Thread Ivan Kazmenko via Digitalmars-d-learn
On Friday, 14 December 2018 at 15:38:49 UTC, Giovanni Di Maria wrote: Hi Is there an utility to print the functions in a source file, for example: - main() --- calculate() - print() --- simulate() - print() . Thank you very much Giovanni Di Maria Do you really have a nested

Map of functions

2018-12-14 Thread Giovanni Di Maria via Digitalmars-d-learn
Hi Is there an utility to print the functions in a source file, for example: - main() --- calculate() - print() --- simulate() - print() . Thank you very much Giovanni Di Maria