Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 11:55 AM
08-07-2003 11:55 AM
HP-UX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 11:59 AM
08-07-2003 11:59 AM
Re: HP-UX
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 12:00 PM
08-07-2003 12:00 PM
Re: HP-UX
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 12:02 PM
08-07-2003 12:02 PM
Re: HP-UX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 12:08 PM
08-07-2003 12:08 PM
Re: HP-UX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 12:11 PM
08-07-2003 12:11 PM
Re: HP-UX
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 12:12 PM
08-07-2003 12:12 PM
Re: HP-UX
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 12:19 PM
08-07-2003 12:19 PM
Re: HP-UX
http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,1667,00.html
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 12:27 PM
08-07-2003 12:27 PM
Re: HP-UX
If you are using HP's compiler, then you'll want to look at hiprof and pixie for profiling code.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2003 07:59 AM
08-08-2003 07:59 AM
Re: HP-UX
Caliper is the best choice for a process profiler. It ships in /opt/caliper/bin/caliper as part of the C or C++ compiler bundles. Documentation and the latest version is also available at
http://www.hp.com/go/caliper
Caliper can produce many kinds of reports including flat profiles, call graph profiles, and detailed information gathered from the Itanium CPUs' performance monitor. It does not require any special compiler options. It can gather profile data for most any native executable. It can even be used with java to profile interpreted code, hotspot compiled code, and JNI native code.
Prospect is another good profiling tool. It is available at
http://www.hp.com/go/prospect
Prospect produces flat profiles of process code. It has some advantages over caliper. It can report on multiple processes at once, either descendents of a target process or all processes in the system. It will report the time processes spend in system calls and profiles of kernel functions.
There are many other performance technologies discussed at
http://h21007.www2.hp.com/dspp/dev/technologies/topic/1,2608,10313,00.html
The first choice for debugging on HP-UX 11i v2.0 is wdb. It ships with the compilers in /opt/langtools/bin/wdb. Documentation and the latest version is also available at
http://www.hp.com/go/wdb
Wdb puts a graphical front-end on gdb, or you can use it with a plain gdb command line.
If you use the vi text editor, then you might want to try firebolt. It is an IDE based on gvim. It provides integration of text editing, building, and debugging. It is available from
http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,3325,00.html