Re: IEFU86 WorkArea use ?

2023-07-09 Thread Rene BRANDT
J'en étais loin, je pensais que certaines entrées comme le logon n'avait pas de workarea... Bravo Bonne soirée, René Le dimanche 9 juillet 2023 à 14:31:58 UTC+2, Guillaume Boesel a écrit : My bad, I found the bug, I should have used         AH    R9,SMXP_WORKAREA_OFFSET  R9 =

Re: IEFU86 WorkArea use ?

2023-07-09 Thread Peter Relson
The linked-to post is not about the work area being "shared" per se. The work area is for use by the called exit routine for the duration of that exit routine's being in control. There can be no assumptions about contents on entry. Basic debugging is necessary for any error. If you're going to

Re: IEFU86 WorkArea use ?

2023-07-09 Thread Guillaume Boesel
My bad, I found the bug, I should have used AH R9,SMXP_WORKAREA_OFFSET R9 = Pointer to the work area and no A R9,SMXP_WORKAREA_OFFSET R9 = Pointer to the work area because "SMXP_WORKAREA_OFFSET DS H Offset to work area" in SYS1.MACLIB(IFAEXITP) Now, all is

Re: IEFU86 WorkArea use ?

2023-07-09 Thread Guillaume Boesel
Hi Binyamin and Seymour "Look at the register that you think is pointing to the workarea." In the following code, the register pointing to SMXP is R10. I add SMXP_WORKAREA_OFFSET to it to point to the workarea (R9) R10 = 7F620050 SMXP R9 = 7F720450 WorkArea Before to use this workarea, I

Re: IEFU86 WorkArea use ?

2023-07-09 Thread Seymour J Metz
Did you check the length in storage, or on;y in the macro? Please show the failing code and the registers. From: IBM Mainframe Assembler List on behalf of Guillaume Boesel Sent: Sunday, July 9, 2023 2:00 AM To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject:

Re: IEFU86 WorkArea use ?

2023-07-09 Thread Binyamin Dissen
On Sun, 9 Jul 2023 02:00:30 -0400 Guillaume Boesel wrote: :>Hi Binyamin and Seymour :>Thanks for your advices. :>"Is the 0C4 in your code or did you possibly mess up other storage?" :>According to IPCS the 0C4 is in my code, failing instruction is when I store stuffs in the IEFU86 workarea

Re: IEFU86 WorkArea use ?

2023-07-09 Thread Guillaume Boesel
Hi Binyamin and Seymour Thanks for your advices. "Is the 0C4 in your code or did you possibly mess up other storage?" According to IPCS the 0C4 is in my code, failing instruction is when I store stuffs in the IEFU86 workarea (only when a new user login or logout). "I would advise testing the