Re: Modify ECB COMECBPT Intermittent response

2018-12-09 Thread Joseph Reichman
> > Charles > > > -Original Message- > From: IBM Mainframe Assembler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] > On Behalf Of Joseph Reichman > Sent: Sunday, December 9, 2018 12:20 PM > To: ASSEMBLER-LIST@LISTSERV.UGA.EDU > Subject: Re: Modify ECB COMECBPT Int

Re: Modify ECB COMECBPT Intermittent response

2018-12-09 Thread Charles Mills
PM To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Modify ECB COMECBPT Intermittent response I think that was it >From what I understand After getting the CIB address via extract I have to issue 2 QEDIT’s The first with a BLOCK parameter to free the start CIB The second to a li

Re: Modify ECB COMECBPT Intermittent response

2018-12-09 Thread Joseph Reichman
: Thursday, December 6, 2018 10:48 AM >> To: ASSEMBLER-LIST@LISTSERV.UGA.EDU >> Subject: Re: Modify ECB COMECBPT Intermittent response >> >> It doesn’t have a wait bit there is only one task waiting on it >> The main task has 2 ECB’s in the list >> One fo

Re: Modify ECB COMECBPT Intermittent response

2018-12-07 Thread Joseph Reichman
bler List [mailto:ASSEMBLER-LIST@LISTSERV.UGA.EDU] > On Behalf Of Joseph Reichman > Sent: Thursday, December 6, 2018 10:48 AM > To: ASSEMBLER-LIST@LISTSERV.UGA.EDU > Subject: Re: Modify ECB COMECBPT Intermittent response > > It doesn’t have a wait bit there is only one tas

Re: Modify ECB COMECBPT Intermittent response

2018-12-07 Thread Charles Mills
To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Re: Modify ECB COMECBPT Intermittent response It doesn’t have a wait bit there is only one task waiting on it The main task has 2 ECB’s in the list One for the EZASMI SELECT and one for the communication ECB The one task that got dispatched has

Re: Modify ECB COMECBPT Intermittent response

2018-12-06 Thread Tom Marchant
On Thu, 6 Dec 2018 13:47:36 -0500, Joseph Reichman wrote: >It doesn’t have a wait bit there is only one task waiting on it That is a contradiction. If a task is waiting on an ECB, it has the wait bit on. Unless, of course, someone has clobbered it. -- Tom Marchant

Re: Modify ECB COMECBPT Intermittent response

2018-12-06 Thread Joseph Reichman
I will later on tonite Thanks > On Dec 6, 2018, at 1:44 PM, Jonathan Scott > wrote: > > Ref: Your note of Thu, 6 Dec 2018 08:27:17 -0600 > > John K writes: >> Just curious. Are you using the WAIT or EVENTS macro? > > Last time I tried, EVENTS couldn't be used with the > communications

Re: Modify ECB COMECBPT Intermittent response

2018-12-06 Thread Joseph Reichman
It doesn’t have a wait bit there is only one task waiting on it The main task has 2 ECB’s in the list One for the EZASMI SELECT and one for the communication ECB The one task that got dispatched has a number of ECB’s waiting Things is 1 out of 4 times the posted logic works > On Dec 6,

Re: Modify ECB COMECBPT Intermittent response

2018-12-06 Thread Jonathan Scott
Ref: Your note of Thu, 6 Dec 2018 08:27:17 -0600 John K writes: > Just curious. Are you using the WAIT or EVENTS macro? Last time I tried, EVENTS couldn't be used with the communications ECB. It's in protected storage, and there's a special feature in WAIT ECB or ECBLIST that specifically

Re: Modify ECB COMECBPT Intermittent response

2018-12-06 Thread Bob Raicer
The scenario you describe creates, at the minimum, race conditions and you can (and likely will) get a S301 ABEND.  (Attempting to WAIT on an ECB which already has its WAIT bit set to one).

Re: Modify ECB COMECBPT Intermittent response

2018-12-06 Thread Janko Kalinic
Just curious. Are you using the WAIT or EVENTS macro? Regards, John K On Wed, Dec 5, 2018 at 6:36 AM Joseph Reichman wrote: > Hi > > > > I have started task which is a TCP/IP concurrent server both the main task > and the subtask have SELECT API (the main task to listen for incoming >

Re: Modify ECB COMECBPT Intermittent response

2018-12-05 Thread Seymour J Metz
COMECBPT Intermittent response Hi I have started task which is a TCP/IP concurrent server both the main task and the subtask have SELECT API (the main task to listen for incoming connections) the subtask for multiple reads/writes The main task has an ECBLIST which contains the communication ECB

Modify ECB COMECBPT Intermittent response

2018-12-05 Thread Joseph Reichman
Hi I have started task which is a TCP/IP concurrent server both the main task and the subtask have SELECT API (the main task to listen for incoming connections) the subtask for multiple reads/writes The main task has an ECBLIST which contains the communication ECB. Thing is the modify command