Re: Getting the Last Condition Code

2018-12-07 Thread Brent Longborough
IMHO this is a Code Smell. If you need the CC in order to print it out for debugging, it's probably more useful to print the data that led to that CC. If you want to save the CC, go off somewhere and do something else, and restore the CC when you get back, that can be buggy and make debugging dif

Re: Getting the Last Condition code

2018-12-07 Thread esst...@juno.com
Binyamin Thank YouThose are the two instructions I could not remember -- Original Message -- From: Binyamin Dissen To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Getting the Last Condition code Date: Fri, 7 Dec 2018 01:11:25 +0200 IPM Can be restored by SPM On Thu, 6 Dec 20

Re: Getting the Last Condition code

2018-12-07 Thread esst...@juno.com
That's the one Thanks Alan -- Original Message -- From: Alan Atkinson To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Getting the Last Condition code Date: Fri, 7 Dec 2018 01:39:54 + IPM? ALAN ATKINSON | SR. DIRECTOR SOFTWARE ARCHITECTURE T 212 633 5313 | aatkin...@med

Re: Modify ECB COMECBPT Intermittent response

2018-12-07 Thread Charles Mills
Do you perhaps have a logic error relative to QEDIT? If you don't free the CIB you may never get another MODIFY. Charles -Original Message- From: IBM Mainframe Assembler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] On Behalf Of Joseph Reichman Sent: Thursday, December 6, 2018 10:48 AM

Re: Modify ECB COMECBPT Intermittent response

2018-12-07 Thread Joseph Reichman
Let me check Thanks > On Dec 7, 2018, at 9:20 AM, Charles Mills wrote: > > Do you perhaps have a logic error relative to QEDIT? If you don't free the > CIB you may never get another MODIFY. > > Charles > > -Original Message- > From: IBM Mainframe Assembler List [mailto:ASSEMBLER-L

Re: Getting the Last Condition Code

2018-12-07 Thread Robin Vowels
From: "Brent Longborough" Sent: Friday, December 07, 2018 11:24 PM IMHO this is a Code Smell. If you need the CC in order to print it out for debugging, it's probably more useful to print the data that led to that CC. If you want to save the CC, go off somewhere and do something else, and re

Re: Getting the Last Condition code

2018-12-07 Thread Robin Vowels
From: "esst...@juno.com" Sent: Saturday, December 08, 2018 12:49 AM Binyamin Thank YouThose are the two instructions I could not remember There's a good programming manual available. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus

Re: Getting the Last Condition Code

2018-12-07 Thread Alan Atkinson
So smelly or not we have a lot of stuff that branches conditionally based on return codes from whatever was just called. CLI *,0 and *,255 along with CR R11,R11 gives a range of options for indicating if something was good, bad or indifferent. The ability to insert (say) a logging routine to tr