Re: Check existence of data area in ILE C
Aaron Albertson <albertaa-r/[email protected]>
| Newsgroups | gmane.comp.lang.as400.c |
|---|---|
| Message-ID | <OF23FFE5BC.A6F3F91C-ON85257DAF.005D9F9C-86257DAF.005EF7F7@us.ibm.com> |
Hi Zvi, QXXRTVDA is a C language port of the RTVDTAARA CL command. If you look at the IBM Knowledge Center documentation for that command you will see that it can signal several exception messages. If you want to handle these exceptions you will need to add a direct monitor exception handler (#pragma exception_handler) around the call to QXXRTVDA. You will have to decide whether you want to monitor for all of the messages, a single message (like the CPF1015 you are currently receiving), or a mixture of those two approaches. You can find documentation on using the direct monitor exception handlers in the IBM Knowledge Center under "Programming->ILE Languages->C and C++->ILE C/C++ Programmer's Guide->Working with IBM i Features->Handling Exceptions in a Program->Using ILE Exception Handlers-> Using ILE Direct Monitor Handlers". This path is from the IBM i 7.2 Knowledge Center, it might be slightly different if you use the Knowledge Center documentation for an earlier release of IBM i. IBM i Knowledge Center: http://www-01.ibm.com/support/knowledgecenter/ssw_ibm_i/welcome Good luck! Aaron From: Zvi Kave <[email protected]> To: c400-l-Zwy7GipZuJhWk0Htik3J/[email protected] Date: 12/15/2014 10:52 AM Subject: [C400-L] Check existence of data area in ILE C Sent by: "C400-L" <c400-l-bounces-Zwy7GipZuJhWk0Htik3J/[email protected]> My ILE C program crashes in the line of QXXRTVDA if data does not exist. Is there a way to avoid this crash ? Someone has an example code for this? The line is like this: QXXRTVDA(dta, 41, 5, user_dta); and I got program crash with the message: "Data area DTA in QGPL not found." If data area dta exists, it works fine. Regards, Zvi -- This is the Bare Metal Programming IBM i (AS/400 and iSeries) (C400-L) mailing list To post a message email: C400-L-Zwy7GipZuJhWk0Htik3J/[email protected] To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/c400-l or email: C400-L-request-Zwy7GipZuJhWk0Htik3J/[email protected] Before posting, please take a moment to review the archives at http://archive.midrange.com/c400-l. -- This is the Bare Metal Programming IBM i (AS/400 and iSeries) (C400-L) mailing list To post a message email: C400-L-Zwy7GipZuJhWk0Htik3J/[email protected] To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/c400-l or email: C400-L-request-Zwy7GipZuJhWk0Htik3J/[email protected] Before posting, please take a moment to review the archives at http://archive.midrange.com/c400-l.