HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Need help while debugging!!
Operating System - OpenVMS
1830226
Members
1546
Online
109999
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
03-27-2007 11:54 PM
03-27-2007 11:54 PM
This was a continuation of my previous thread of how to set up the X-window. i was able to set up the X-window & realized that the problem lies in my source code.
So linked the image with /DEBUG parameter and started the image in Debug mode. i did some initial step commands, once it reached the function XtToolkitInitialize(), it brings the following error.
>>>>>>>>>>>>
DBG> step
%DEBUG-I-DSFMISMATCH, using I64V82$DKA0:[VMS$COMMON.SYSLIB]LIBRTL.DSF; but it does NOT appear to match with DISK$I64SYS:[VMS$COMMON.SYSLIB]LIBRTL.EXE;1
%DEBUG-I-DYNIMGSET, setting image LIBRTL
%DEBUG-I-DYNMODSET, setting module LIB$FIND_IMAGE
%DEBUG-I-DYNLNGSET, setting language BLISS
%DEBUG-W-UNAOPNSRC, unable to open source file $1$DGA2027:[LIBRTL_5.SRC]LIBFNDIMG.BLI;1
-RMS-F-DEV, error in device name or inappropriate device type for operation
%DEBUG-I-DYNIMGSET, setting image RS1WS
%DEBUG-I-DYNLNGSET, setting language C
stepped to STN\main\%LINE 42447 in THREAD 1
DBG>
<<<<<<<<<<
This XtToolkitInitialize() is defined in the SYS$COMMON:[000000.DECW$INCLUDE]INTRINSIC.H;1
header file.
After this debug error, once i finish a few step command, the whole thing hangs. A new pop up window appears with an acknowledge button and has following error(this is my application based)(For more info please refer the attachment)
Fatal: Error 406225122 in getting text of message for HLI error 406224986
& the debugger stops responding after clicking the button in the pop up window & displays the following:
%DEBUG-I-EXITSTATUS, is '%SYSTEM-S-NORMAL, normal successful completion'
%DEBUG-I-NOSOURCE, No source for address: 0000000000000000
Appreciate if anyone could comment on this!!!
Thanks
/Manesh
So linked the image with /DEBUG parameter and started the image in Debug mode. i did some initial step commands, once it reached the function XtToolkitInitialize(), it brings the following error.
>>>>>>>>>>>>
DBG> step
%DEBUG-I-DSFMISMATCH, using I64V82$DKA0:[VMS$COMMON.SYSLIB]LIBRTL.DSF; but it does NOT appear to match with DISK$I64SYS:[VMS$COMMON.SYSLIB]LIBRTL.EXE;1
%DEBUG-I-DYNIMGSET, setting image LIBRTL
%DEBUG-I-DYNMODSET, setting module LIB$FIND_IMAGE
%DEBUG-I-DYNLNGSET, setting language BLISS
%DEBUG-W-UNAOPNSRC, unable to open source file $1$DGA2027:[LIBRTL_5.SRC]LIBFNDIMG.BLI;1
-RMS-F-DEV, error in device name or inappropriate device type for operation
%DEBUG-I-DYNIMGSET, setting image RS1WS
%DEBUG-I-DYNLNGSET, setting language C
stepped to STN\main\%LINE 42447 in THREAD 1
DBG>
<<<<<<<<<<
This XtToolkitInitialize() is defined in the SYS$COMMON:[000000.DECW$INCLUDE]INTRINSIC.H;1
header file.
After this debug error, once i finish a few step command, the whole thing hangs. A new pop up window appears with an acknowledge button and has following error(this is my application based)(For more info please refer the attachment)
Fatal: Error 406225122 in getting text of message for HLI error 406224986
& the debugger stops responding after clicking the button in the pop up window & displays the following:
%DEBUG-I-EXITSTATUS, is '%SYSTEM-S-NORMAL, normal successful completion'
%DEBUG-I-NOSOURCE, No source for address: 0000000000000000
Appreciate if anyone could comment on this!!!
Thanks
/Manesh
Solved! Go to Solution.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2007 12:03 PM
03-28-2007 12:03 PM
Solution
Manesh,
DEBUG-I-EXITSTATUS means your program has deliberately exitted, and with success status - more than likely in response to the fatal error. The other DEBUG messages you've posted are benign, they're telling you that the source codes for OS components are unavailable - this is normal.
As you say, the error message is from your application, so there's not much I can say about its interpretation.
The "hang" in DEBUG is because your application is "running" (actually just waiting for a response in your dialog box). You can hit ^C or ^Y and then type DEBUG at the $ prompt to get DEBUG control. You can then use SHOW CALL and/or SHOW STACK to work out where you are in the application.
Alternatively, instead of STEP try STEP/INTO or SET BREAK to get into routines of interest. You need to have some idea of where your program has problems, and focus your attention on examining program flow at those places. Use SET BREAK to stop at particular routines or source lines, or SET WATCH to stop when a variable is written.
DEBUG-I-EXITSTATUS means your program has deliberately exitted, and with success status - more than likely in response to the fatal error. The other DEBUG messages you've posted are benign, they're telling you that the source codes for OS components are unavailable - this is normal.
As you say, the error message is from your application, so there's not much I can say about its interpretation.
The "hang" in DEBUG is because your application is "running" (actually just waiting for a response in your dialog box). You can hit ^C or ^Y and then type DEBUG at the $ prompt to get DEBUG control. You can then use SHOW CALL and/or SHOW STACK to work out where you are in the application.
Alternatively, instead of STEP try STEP/INTO or SET BREAK to get into routines of interest. You need to have some idea of where your program has problems, and focus your attention on examining program flow at those places. Use SET BREAK to stop at particular routines or source lines, or SET WATCH to stop when a variable is written.
A crucible of informative mistakes
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP