Re: Upcoming time boundary events

Liste des GroupesRevenir à co vms 
Sujet : Re: Upcoming time boundary events
De : seaohveh (at) *nospam* hoffmanlabs.invalid (Stephen Hoffman)
Groupes : comp.os.vms
Date : 14. Jun 2025, 18:00:29
Autres entêtes
Organisation : HoffmanLabs LLC
Message-ID : <102k9rd$abd3$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14
User-Agent : Unison/2.2
On 2025-06-01 23:27:48 +0000, Arne Vajhøj said:

On 5/31/2025 3:47 PM, Arne Vajhøj wrote:
The context was:
 ####                                                 and
#### transparent task to task communication ?
 ### and task to task->INETD.
 So I assume that we are talking about how to rewrite
something like:
 $ open/read f 0::"task=something"
$ read f line
$ close f
$ exit
 Or to provide a complete example:
 $ typ add.com
$ open/read/write f sys$net
$ read f num1
$ num1 = f$integer(num1)
$ read f num2
$ num2 = f$integer(num2)
$ numres = num1 + num2
$ numres = f$string(numres)
$ write f numres
$ close f
$ exit
$ typ tst.com
$ open/read/write f 0"myusername mypassword"::"task=add.com"
$ write f "123"
$ write f "456"
$ read f res
$ close f
$ write sys$output res
$ exit
$ @tst
579
 Arne
From the OpenVMS Freeware...
$!  XQTYPE.COM
$!
$   Set NoOn
$   Set NoVerif
$   vers = "0000|XQTYPE"
$   Goto 'F$Mode()'
$!
$!  ©1989 Digital Equipment Corporation
$!  Written: S Hoffman, 21-Jan-1989
$!
$!  Uses DCL DECnet task-to-task to check the device type of the XQA0:
$!  controller on the remote system.  Can return <unknown>, <none>,
$!  <DELQA> or <DEQNA>.  Requires VMS V5.0 or better as the procedure
$!  uses block-structured IF DCL syntax.
$!
$!  Calling:
$! @XQTYPE node
$!
$!  Procedure must be named XQTYPE.COM and must reside in the default
$!  login directory on both the local and the remote nodes.  Note that
$!  the remote login may occur either in the directory specified by a
$!  proxy, if one exists, or in the DECNET directory.  If you're not
$!  sure the default directory can be found by entering the command
$!  "DIRECTORY node::".  Requires access to the DECNET TASK object on
$!  the remote end; either by the default DECNET username/password or
$!  via a proxy.
$!
$INTERACTIVE:
$DO_P1:
$   p1 = F$Edit(p1,"COLLAPSE,UPCASE") - "::"
$   If F$Leng(p1) .eq. 0
$   Then
$ msg = "Error reading input"
$ Read/Prompt="Node? "/Error=DONE Sys$Command p1
$ Goto DO_P1
$   EndIf
$!
$   msg = "Error creating network connection"
$   Open/Read/Write/Error=DONE net 'p1'::"task=XQTYPE"
$   Read net remvers
$   Write net vers
$   Read net XQType
$   Close net
$   Write Sys$Output "XQA0: Device type on node ''p1':: is ''XQType'"
$   msg = ""
$   Goto DONE
$
$NETWORK:
$!  remove the colons to work around a FT bug in DECwindows
$   Show Process/All
$   msg = "Error receiving network connection"
$   Open/Read/Write/Error=DONE net Sys$Net
$   Write net vers
$   Read net remvers
$   If F$GetDVI("XQA0:","EXISTS")
$   Then
$ DEVType = F$GetDVI("XQA0:","DEVTYPE")
$ XQType = "<unknown>"
$ If DEVType .eq. 33 Then XQType = "DELQA"
$ If DEVType .eq. 22 Then XQType = "DEQNA"
$   Else
$ XQType = "<none>"
$   EndIf
$   Write net XQType
$   Close net
$
$BATCH:
$OTHER:
$   msg = "Unsupported F$MODE()"
$
$DONE:
$   If F$Len(msg) .ne. 0 Then Write Sys$Output msg
$   Stop
$   Exit
--
Pure Personal Opinion | HoffmanLabs LLC
Date Sujet#  Auteur
19 May 25 * Upcoming time boundary events107Simon Clubley
19 May 25 +* Re: Upcoming time boundary events4Arne Vajhøj
19 May 25 i+* Re: Upcoming time boundary events2Chris Townley
19 May 25 ii`- Re: Upcoming time boundary events1Chris Townley
20 May 25 i`- Re: Upcoming time boundary events1Lawrence D'Oliveiro
23 May 25 `* Re: Upcoming time boundary events102Stephen Hoffman
23 May 25  `* Re: Upcoming time boundary events101Simon Clubley
23 May 25   `* Re: Upcoming time boundary events100Robert A. Brooks
27 May 25    `* Re: Upcoming time boundary events99Simon Clubley
28 May 25     +- Re: Upcoming time boundary events1Dan Cross
29 May 25     +* Re: Upcoming time boundary events61bill
29 May 25     i+* Re: Upcoming time boundary events11Simon Clubley
29 May 25     ii+* Re: Upcoming time boundary events7David Wade
30 May 25     iii`* Re: Upcoming time boundary events6Simon Clubley
30 May 25     iii `* Re: Upcoming time boundary events5Arne Vajhøj
30 May 25     iii  +- Re: Upcoming time boundary events1Lawrence D'Oliveiro
2 Jun 25     iii  `* Re: Upcoming time boundary events3Simon Clubley
2 Jun 25     iii   `* Re: Upcoming time boundary events2Arne Vajhøj
3 Jun 25     iii    `- Re: Upcoming time boundary events1Lawrence D'Oliveiro
30 May 25     ii+* Re: Upcoming time boundary events2bill
30 May 25     iii`- Re: Upcoming time boundary events1Dan Cross
30 May 25     ii`- Re: Upcoming time boundary events1Dave Froble
29 May 25     i`* Re: Upcoming time boundary events49jayjwa
30 May 25     i `* Re: Upcoming time boundary events48bill
30 May 25     i  `* Re: Upcoming time boundary events47Marc Van Dyck
30 May 25     i   +* Re: Upcoming time boundary events3Simon Clubley
30 May 25     i   i`* Re: Upcoming time boundary events2Arne Vajhøj
2 Jun 25     i   i `- Re: Upcoming time boundary events1Simon Clubley
30 May 25     i   +* Re: Upcoming time boundary events13Arne Vajhøj
31 May 25     i   i`* Re: Upcoming time boundary events12Marc Van Dyck
31 May 25     i   i +- Re: Upcoming time boundary events1bill
31 May 25     i   i +* Re: Upcoming time boundary events9Arne Vajhøj
31 May 25     i   i i`* Re: Upcoming time boundary events8Chris Townley
31 May 25     i   i i `* Re: Upcoming time boundary events7Arne Vajhøj
2 Jun 25     i   i i  `* Re: Upcoming time boundary events6Arne Vajhøj
2 Jun 25     i   i i   +- Re: Upcoming time boundary events1Lawrence D'Oliveiro
14 Jun 25     i   i i   `* Re: Upcoming time boundary events4Stephen Hoffman
15 Jun 25     i   i i    `* Re: Upcoming time boundary events3Lawrence D'Oliveiro
15 Jun 25     i   i i     `* Re: Upcoming time boundary events2Arne Vajhøj
15 Jun 25     i   i i      `- Re: Upcoming time boundary events1Lawrence D'Oliveiro
2 Jun 25     i   i `- Re: Upcoming time boundary events1Simon Clubley
30 May 25     i   `* Re: Upcoming time boundary events30Lawrence D'Oliveiro
2 Jun 25     i    +* Re: Upcoming time boundary events18Arne Vajhøj
2 Jun 25     i    i+- Re: Upcoming time boundary events1Arne Vajhøj
2 Jun 25     i    i`* Re: Upcoming time boundary events16Lawrence D'Oliveiro
2 Jun 25     i    i +* Re: Upcoming time boundary events12Marc Van Dyck
2 Jun 25     i    i i+- Re: Upcoming time boundary events1JKB
2 Jun 25     i    i i`* Re: Upcoming time boundary events10Dan Cross
2 Jun 25     i    i i `* Re: Upcoming time boundary events9Arne Vajhøj
2 Jun 25     i    i i  `* Re: Upcoming time boundary events8Dan Cross
2 Jun 25     i    i i   `* Re: Upcoming time boundary events7Arne Vajhøj
2 Jun 25     i    i i    +- Re: Upcoming time boundary events1Arne Vajhøj
2 Jun 25     i    i i    `* Re: Upcoming time boundary events5Dan Cross
2 Jun 25     i    i i     `* Re: Upcoming time boundary events4Arne Vajhøj
2 Jun 25     i    i i      `* Re: Upcoming time boundary events3Dan Cross
2 Jun 25     i    i i       `* Re: Upcoming time boundary events2Arne Vajhøj
3 Jun 25     i    i i        `- Re: Upcoming time boundary events1Dan Cross
2 Jun 25     i    i `* Re: Upcoming time boundary events3Arne Vajhøj
3 Jun 25     i    i  `* Re: Upcoming time boundary events2Lawrence D'Oliveiro
3 Jun 25     i    i   `- Re: Upcoming time boundary events1Arne Vajhøj
8 Jun 25     i    `* Re: Upcoming time boundary events11chrisq
9 Jun 25     i     `* Re: Upcoming time boundary events10Lawrence D'Oliveiro
9 Jun 25     i      `* Re: Upcoming time boundary events9chrisq
9 Jun 25     i       `* Re: Upcoming time boundary events8Lawrence D'Oliveiro
10 Jun 25     i        `* Re: Upcoming time boundary events7chrisq
10 Jun 25     i         +* Re: Upcoming time boundary events5Arne Vajhøj
10 Jun 25     i         i`* Re: Upcoming time boundary events4chrisq
11 Jun 25     i         i `* Re: Upcoming time boundary events3Lawrence D'Oliveiro
12 Jun 25     i         i  `* Re: Upcoming time boundary events2Simon Clubley
12 Jun 25     i         i   `- Re: Upcoming time boundary events1Dan Cross
11 Jun 25     i         `- Re: Upcoming time boundary events1Lawrence D'Oliveiro
31 May 25     `* Re: Upcoming time boundary events36Arne Vajhøj
31 May 25      `* Re: Upcoming time boundary events35Marc Van Dyck
31 May 25       +* Re: Upcoming time boundary events31Arne Vajhøj
2 Jun 25       i+* Re: Upcoming time boundary events26Marc Van Dyck
2 Jun 25       ii+* Re: Upcoming time boundary events20Marc Van Dyck
2 Jun 25       iii`* Re: Upcoming time boundary events19Arne Vajhøj
3 Jun 25       iii `* Re: Upcoming time boundary events18Marc Van Dyck
4 Jun 25       iii  `* Re: Upcoming time boundary events17Marc Van Dyck
4 Jun 25       iii   `* Re: Upcoming time boundary events16Lawrence D'Oliveiro
5 Jun 25       iii    +* Re: Upcoming time boundary events6Marc Van Dyck
5 Jun 25       iii    i+* Re: Upcoming time boundary events2Arne Vajhøj
6 Jun 25       iii    ii`- Re: Upcoming time boundary events1Marc Van Dyck
6 Jun 25       iii    i`* Re: Upcoming time boundary events3Lawrence D'Oliveiro
9 Jun 25       iii    i `* Re: Upcoming time boundary events2Simon Clubley
9 Jun 25       iii    i  `- Re: Upcoming time boundary events1Dan Cross
5 Jun 25       iii    `* Re: Upcoming time boundary events9Dave Froble
5 Jun 25       iii     +* Re: Upcoming time boundary events6bill
5 Jun 25       iii     i+- Re: Upcoming time boundary events1Chris Townley
5 Jun 25       iii     i`* Re: Upcoming time boundary events4Arne Vajhøj
6 Jun 25       iii     i `* Re: Upcoming time boundary events3Lawrence D'Oliveiro
14 Jun 25       iii     i  `* Re: Upcoming time boundary events2Arne Vajhøj
15 Jun 25       iii     i   `- Re: Upcoming time boundary events1Lawrence D'Oliveiro
8 Jun 25       iii     `* Re: Upcoming time boundary events2Waldek Hebisch
8 Jun 25       iii      `- Re: Upcoming time boundary events1Lawrence D'Oliveiro
2 Jun 25       ii`* Re: Upcoming time boundary events5Arne Vajhøj
2 Jun 25       ii +- Re: Upcoming time boundary events1Arne Vajhøj
3 Jun 25       ii `* Re: Upcoming time boundary events3Marc Van Dyck
3 Jun 25       ii  `* Re: Upcoming time boundary events2Arne Vajhøj
4 Jun 25       ii   `- Re: Upcoming time boundary events1Marc Van Dyck
2 Jun 25       i`* Re: Upcoming time boundary events4Simon Clubley
31 May 25       `* Re: Upcoming time boundary events3Lawrence D'Oliveiro

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal