what is the best program to view process memory map? [closed] - c++

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I need to view image/heap/malloc()/stack and other resources used by process. I knew about Memory Validator but it lacks some of features.

Checkout the tools from Sys Internals.
http://technet.microsoft.com/en-us/sysinternals/bb545027
Namely RamMap and VMMap.
If you can state what features you're looking for, then it would help to provide a better solution.

Some options:
Process explorer?
Windbg?
Visual Studio?
What exactly are you looking to view?

Related

Any good tutorial for Ocamlgraph? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am not familiar with OCamlgraph library? I am not able to find any good documentation for the same? I am not able to run any small examples also. I want to find all cycles in graph for that I am using it.
Anyone aware of any documentation? Or a set of examples for the same?
There is the paper on ocamlgraph:
http://www.lri.fr/~filliatr/ftp/publis/ocamlgraph.ps
And aside from the examples on the ocamlgraph homepage, there is a more compact code example here:
How to visualize/draw automata in ocaml?

XCode: what is the best way of measuring a code performance? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Please, tell me, what is the best way of measuring a code performance in Xcode?
Use Instruments.
Open your project, go in the menu Product > Profile. This will open Instruments. The Time Profiler instrument is probably what you're looking for.
Xcode includes various performance tools and metrics.
https://developer.apple.com/library/ios/#DOCUMENTATION/Performance/Conceptual/PerformanceOverview/PerformanceTools/PerformanceTools.html

What's the best RPC implementation that works with Google protobuf? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I want to use RPC+protobuf in my distributed application(written by C/C++), and I found that there are already some RPC implementations listed in "Third-Party Add-ons for Protocol Buffers", but I cannot find out which one is the best. Could someone tell me the best practice of RPC+protobuf?
Thanks in advance.

Where to start with FastCGI and C++ [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
Anyone have any links or resource regarding writing a proper C++ FastCGI application? (on top of Apache using mod_fastcgi or mod_fcgid).
I suggest you fastcgi++, which is an alternative to the FDK.
It is much more easy to use and is in a C++ way.
The obvious one would be the FastCGI Development Kit (for C/C++).

Are there any tools that are able to do cyclomatics on Pro*C++ sources? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Are there any tools that are able to do code metrics on Pro*C++ sources?
I haven't been able to find anything specific via Google.
Does anyone have any experience with this?
Pro*C can generate valid C++ files, for code metrics tools on standard c++ Google is your friend.