Re: TCPIP Default keep alive question

2009-06-16 Thread Vic Petrone
Hello everyone, Sorry for the delayed response. First, thank you all very much for your responses! I'll try to reply to your comments here: 1) Gaur: I'm looking for an assembler interface to access this value. My application runs in a started task and does not have access to TSO. I used the

TCPIP Default keep alive question

2009-06-01 Thread Vic Petrone
Is there a programming interface to extract the DefaultKeepALive value that is stored the TCP Configuration Table? This is the same value that the TSO NETSTAT CONFIG command displays. Thanks, Vic -- For IBM-MAIN subscribe /

Re: Anyone Know of a Good Pocket Calculator Like HP with Hex capabilities

2009-05-01 Thread Vic Petrone
I've been using Sharp calculators for years, they work well, and have never given me any problems. Check out their website for the latest models. V. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email

Re: ASSBTSQN Question.

2009-05-01 Thread Vic Petrone
Please disregard this question. I've figured it out. Regards, Vic -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the archives at

Need help with RACF SETROPTS PASSWORD option

2009-03-25 Thread Vic Petrone
Hello, I have an authorized program that needs to know whether the RACF SETROPTS PASSWORD is set to MIXEDCASE or NOMIXEDCASE. I've checked the 'RACROUTE Macro Reference' but could not find anything there that would help. The only manual I found that offered this service is the R_admin

Re: Need help with RACF SETROPTS PASSWORD option

2009-03-25 Thread Vic Petrone
Thank you both for your quick responses! I forgot about data areas. Vic -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the

Re: Questions on ATTACHX's ETXR exit routine

2007-09-17 Thread Vic Petrone
Binyamin, Chris, I did some testing and more reading and discovered the following... a) The Extended Addressability Guide says that each workunit (TCB or SRB) has its own stack. From that I it appears that the IRB is sharing the stack with the orginating task. So, I won't be using the stack to

Re: Questions on ATTACHX's ETXR exit routine

2007-09-17 Thread Vic Petrone
:a) The Extended Addressability Guide says that each workunit (TCB or SRB) :has its own stack. From that I it appears that the IRB is sharing the stack :with the orginating task. So, I won't be using the stack to save the state in :the exit. Hence the second question on the size of the save area

Questions on ATTACHX's ETXR exit routine

2007-09-16 Thread Vic Petrone
Hello everyone, I have a couple questions regarding ETXR that I'm hoping the group can help me with... 1) Does the ETXR exit routine share the Linkage Stack with the originating task? 2) Is the savearea pointed by R13 upon entry to the ETXR routine, 72 bytes long? (i.e. long enough to hold

Re: Is TCBECB supposed to be zero at end of task?

2007-09-09 Thread Vic Petrone
Thank you all for your replies. Peter thanks for confirming my original TCBECB question. I decided to solve the problem by creating an ETXR stub routine that is less than 128 bytes long. The stub is copied to the end of each subtask's context area. Each instance of a subtask get passed this

Is TCBECB supposed to be zero at end of task?

2007-09-07 Thread Vic Petrone
I have a main program that attaches a subtask. The main program specifies both ECB= and EXTR= on the ATTACHX macro. The ECB pointed by ECB=, resides ***within*** a subtask context area allocated by the main program. When the subtask terminates, the ETXR routine receives control with the

IFAUSAGE questions

2007-03-08 Thread Vic Petrone
I'm using IFAUSAGE to record type 89 usage data for an ISPF dialog (IFAUSAGE REQUEST=REGISTER,DOMAIN=TASK,SCOPE=ALL...). The SMF manual says that the program does NOT need be in supervisor state in order to use the REQUEST=REGISTER function but, MUST be in supervisor state in order to issue

Re: Help with TCB status

2006-07-06 Thread Vic Petrone
Probably better to just use the TCB pointer chains while holding the local lock. You've piqued my interest ... Which TCB chain? Where's its anchor and next chain pointer? Does this chain contain only dispatchable TCB? Currently I run the TCB chain starting from job step TCB and moving

Re: Help with TCB status

2006-07-06 Thread Vic Petrone
If there isn't a cpu available, or if the task isn't at the head of the next-to-be-dispatched web queue, then its not going to run. Being non-dispatchable is a deal breaker, but being dispatchable only means that you're eligible to run some time. What points to the next-to-be-dispatched web

Re: Help with TCB status

2006-07-05 Thread Vic Petrone
Thanks for your replies. The SRB is sampling the address space so it tolerates statically error and uncertainty. What I'd like to try and nail down is whether the TCB is dispatchable but no CPU is available *or* is actually executing. Any ideas? I was wondering, could the SRB examine the

Help with TCB status

2006-07-04 Thread Vic Petrone
Hello everyone, I have an SRB that is scheduled to run in a target address space. The SRB attempts to determine the status (wait, active and ready) of all TCBs from job step down. The SRB holds the local lock before attempting to check the status. I'm trying to figure out a couple of things:

Question on LLA managed module and its DSN

2005-12-21 Thread Vic Petrone
Hi everyone, I'm trying to determine the load library DSN used to load a module that is managed by LLA. I found the module's CDE entry and from there the associated CDX1. The CDX1 normally would provide the DDName for the load library which, eventually gets me to the DSN. In the LLA case the

Re: CDESPLIT flag and RMODE(SPLIT) question.

2005-11-21 Thread Vic Petrone
On Mon, 21 Nov 2005 07:07:26 -0600, Chase, John [EMAIL PROTECTED] wrote: Posts to the bit.listserv.ibm-main newsgroup are not gated to the listserv (email) subscribers; hence are invisible to those of us without newsgroup access. John, Would it be possible to post to the newsgroup and CC the

Re: CDESPLIT flag and RMODE(SPLIT) question

2005-11-20 Thread Vic Petrone
Peter, Your repsonses have been very helpful. Thanks again! Vic -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at

Re: CDESPLIT flag and RMODE(SPLIT) question.

2005-11-19 Thread Vic Petrone
Thanks again Peter. Two final questions: Is it possible to have more than two seqments in the extent list? If so, what does this mean? Thanks, Vic -- For IBM-MAIN subscribe / signoff / archive access instructions, send email

Re: Re; CDESPLIT flag and RMODE(SPLIT) question.

2005-11-18 Thread Vic Petrone
Thanks for your reply Peter. Is there another way for a programe to determine if the loaded module is split? Can I check the extent list? If the relocattion factor is 2 and the one address is above and one below the line, then assume it's split? Thanks, vic

CDESPLIT flag and RMODE(SPLIT) question.

2005-11-17 Thread Vic Petrone
I have posted this question to the ibm-main newsgroup and it appears not to have made it to the listserver (I was under the impression that this was automatic). Therefore, I'm posting it to the listserver manually. My appologies if I have duplicated this posting here... I've created a test

Re: Questions on ECB status when task abends

2005-08-24 Thread Vic Petrone
Thank you both for your replies. No, I'm not using EXTR nor was the STEP specified on the ABEND. I understand the problem. After the subtask percolates, the system post the main task's ECB with the subtask's completion code. The abend will not interrupt the main task. The main task can check the

Questions on ECB status when task abends

2005-08-23 Thread Vic Petrone
Hi, I have a main task and subtask running. The main task has an ESTAE established and the subtask has an ESTAI established. The subtask runs asynchronously with the main task. The main task is waiting on an ECB to be posted by an external event. During this wait the subtask abends, the abend is