Re: ASCRE init module (again)

2019-01-11 Thread Seymour J Metz
That's one option.


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List  on behalf of 
scott Ford 
Sent: Wednesday, January 9, 2019 8:38 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: ASCRE init module (again)

Like  N/T and some storage for CBS in a subpool. .?

On Wed, Jan 9, 2019 at 3:13 PM Seymour J Metz  wrote:

> Don't even think of using fields like CVTUSER and TCBUSER unless there is
> some way to be sure that nobody else is or ever will be using them.
> BTDT,GTS.
>
>
> --
> Shmuel (Seymour J.) Metz
> http://mason.gmu.edu/~smetz3
>
> 
> From: IBM Mainframe Discussion List  on behalf
> of Robin Atwood 
> Sent: Wednesday, January 9, 2019 6:37 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: ASCRE init module (again)
>
> In my init module I now want to obtain storage and set up a control block
> and pass the address to the main program. Where is a good place to stash
> this? I suppose I could create an N/T pair but this seems a bit cumbersome
> just to pass a single address within an address space. There is the TCBUSER
> field in the top-level TCB (IEAVAR00) but that's a bit scary. I create an
> ACEE and that has a field ACEEAPTR which is reserved for the application,
> so
> that is a possibility. What do other people do? Am I missing something
> blindingly obvious?!
>
> Thanks
> Robin
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
--
Scott Ford
IDMWORKS
z/OS Development

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ASCRE init module (again)

2019-01-09 Thread Robin Atwood
>> Don't even think of using fields like CVTUSER and TCBUSER

Agreed! I am thinking storage in a user sub-pool and saving the address in the 
ACEE since we create that.

Thanks
Robin
-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of scott Ford
Sent: 10 January 2019 08:39
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: ASCRE init module (again)

Like  N/T and some storage for CBS in a subpool. .?

On Wed, Jan 9, 2019 at 3:13 PM Seymour J Metz  wrote:

> Don't even think of using fields like CVTUSER and TCBUSER unless there is
> some way to be sure that nobody else is or ever will be using them.
> BTDT,GTS.
>
>
> --
> Shmuel (Seymour J.) Metz
> http://mason.gmu.edu/~smetz3
>
> 
> From: IBM Mainframe Discussion List  on behalf
> of Robin Atwood 
> Sent: Wednesday, January 9, 2019 6:37 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: ASCRE init module (again)
>
> In my init module I now want to obtain storage and set up a control block
> and pass the address to the main program. Where is a good place to stash
> this? I suppose I could create an N/T pair but this seems a bit cumbersome
> just to pass a single address within an address space. There is the TCBUSER
> field in the top-level TCB (IEAVAR00) but that's a bit scary. I create an
> ACEE and that has a field ACEEAPTR which is reserved for the application,
> so
> that is a possibility. What do other people do? Am I missing something
> blindingly obvious?!
>
> Thanks
> Robin
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
-- 
Scott Ford
IDMWORKS
z/OS Development

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ASCRE init module (again)

2019-01-09 Thread scott Ford
Like  N/T and some storage for CBS in a subpool. .?

On Wed, Jan 9, 2019 at 3:13 PM Seymour J Metz  wrote:

> Don't even think of using fields like CVTUSER and TCBUSER unless there is
> some way to be sure that nobody else is or ever will be using them.
> BTDT,GTS.
>
>
> --
> Shmuel (Seymour J.) Metz
> http://mason.gmu.edu/~smetz3
>
> 
> From: IBM Mainframe Discussion List  on behalf
> of Robin Atwood 
> Sent: Wednesday, January 9, 2019 6:37 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: ASCRE init module (again)
>
> In my init module I now want to obtain storage and set up a control block
> and pass the address to the main program. Where is a good place to stash
> this? I suppose I could create an N/T pair but this seems a bit cumbersome
> just to pass a single address within an address space. There is the TCBUSER
> field in the top-level TCB (IEAVAR00) but that's a bit scary. I create an
> ACEE and that has a field ACEEAPTR which is reserved for the application,
> so
> that is a possibility. What do other people do? Am I missing something
> blindingly obvious?!
>
> Thanks
> Robin
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
-- 
Scott Ford
IDMWORKS
z/OS Development

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ASCRE init module (again)

2019-01-09 Thread Seymour J Metz
Don't even think of using fields like CVTUSER and TCBUSER unless there is some 
way to be sure that nobody else is or ever will be using them. BTDT,GTS.


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List  on behalf of 
Robin Atwood 
Sent: Wednesday, January 9, 2019 6:37 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: ASCRE init module (again)

In my init module I now want to obtain storage and set up a control block
and pass the address to the main program. Where is a good place to stash
this? I suppose I could create an N/T pair but this seems a bit cumbersome
just to pass a single address within an address space. There is the TCBUSER
field in the top-level TCB (IEAVAR00) but that's a bit scary. I create an
ACEE and that has a field ACEEAPTR which is reserved for the application, so
that is a possibility. What do other people do? Am I missing something
blindingly obvious?!

Thanks
Robin

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: ASCRE init module (again)

2019-01-09 Thread esst...@juno.com
I use Name Token Pairs for passing dataYou may want to consider using the Sub 
System Interface (SSI) GET/PUT to anchor a control block in common.

-- Original Message --
From: Robin Atwood 
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: ASCRE init module (again)
Date: Wed, 9 Jan 2019 18:37:02 +0700

In my init module I now want to obtain storage and set up a control block
and pass the address to the main program. Where is a good place to stash
this? I suppose I could create an N/T pair but this seems a bit cumbersome
just to pass a single address within an address space. There is the TCBUSER
field in the top-level TCB (IEAVAR00) but that's a bit scary. I create an
ACEE and that has a field ACEEAPTR which is reserved for the application, so
that is a possibility. What do other people do? Am I missing something
blindingly obvious?!

Thanks
Robin

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


ASCRE init module (again)

2019-01-09 Thread Robin Atwood
In my init module I now want to obtain storage and set up a control block
and pass the address to the main program. Where is a good place to stash
this? I suppose I could create an N/T pair but this seems a bit cumbersome
just to pass a single address within an address space. There is the TCBUSER
field in the top-level TCB (IEAVAR00) but that's a bit scary. I create an
ACEE and that has a field ACEEAPTR which is reserved for the application, so
that is a possibility. What do other people do? Am I missing something
blindingly obvious?!

Thanks
Robin

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN