- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to view callout table using q4?
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
09-29-2004 06:03 PM
09-29-2004 06:03 PM
How to view callout table using q4?
I couldn't find a way of reading the callout
table using q4 on HPUX11.0
Appreciate any help in this regard.
TIA,
Surekha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:34 PM
09-29-2004 06:34 PM
Re: How to view callout table using q4?
I don't remember anything on top of my head right now but you can get the documentation in /usr/contrib/doc directory as a compressed archive. Uncompress and untar you should see the PDF files.
If you want to find the 'ncallout' kernel parameter at the time of crash, you should be able to see it in the ana.out file that get's created during the analysis process. Search for "VM Tables" or "ncallout" in that file.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:39 PM
09-29-2004 06:39 PM
Re: How to view callout table using q4?
Ignore my second statement. You aren't looking for it. I am up too late.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 06:53 PM
09-29-2004 06:53 PM
Re: How to view callout table using q4?
I refered the Q4 pdfs but they did not
have any command to see the callout table.
I could get the fields of callout structure and nothing more than that.
In SCO Unixware I have used the "callout" command which displays all callout table entries. Does q4 have such feature at all?
TIA,
Surekha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 02:48 PM
09-30-2004 02:48 PM
Re: How to view callout table using q4?
For me, it's hard to remember the symbols and syntax with q4. 'load struct callout from callout max ncallout' will load all the structures from the table like any other kernel structure. Then you can see the flag fields by 'print c_flag > flags.out'. Select the type of callouts you are interested in like only PENDING_CALLOUTs with 'keep c_flag=PENDING_CALLOUT' and then you can get the addresses of the functions etc., from there. Look at callout.h file for more details. YOu could print contents of the structure into a file after loading the structure like 'print -tx > ncallout.out'.
I will try looking for more specific documentation. I had seem some members posting extensive information on Q4 like semaphore debugging etc., but not necessarily related to ncallouts. Do not forget to take a backup of your current kernel before you run pxdb.
-Sri