Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Customizing the output of CTRL-T
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 37 - Expand all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Guy Peleg  
View profile  
 More options Dec 10 2004, 4:57 pm
Newsgroups: comp.os.vms
From: "Guy Peleg" <guy.peleg@remove_this_hp.com>
Date: Fri, 10 Dec 2004 23:57:40 +0200
Local: Fri, Dec 10 2004 4:57 pm
Subject: Customizing the output of CTRL-T
We have added the ability to customize the output of the CTRL-T routine.

If the symbol DCL$CTRLT is defined DCL will append it's contents to

the traditional CTRL-T output. It allows users to use CTRL-T for their

own needs in their applications. It may also be used for debugging

user/supervisor mode code.

Here is a simple DCL procedure using the new feature

IPL31> ty ctrlt_loop.com

$ inner=0

$ outer=0

$ loop:

$ loop1:

$ if inner .gt. 20000 then goto end_loop1

$ inner=inner+1

$ dcl$ctrlt=F$FAO("Inner loop count is !SL !/ Outer loop count is
!SL",inner,outer)

$ goto loop1

$ end_loop1:

$ inner=0

$ outer=outer+1

$ goto loop

IPL31> @ctrlt_loop

IPL31::GUY 10:46:37 (DCL) CPU=00:03:42.68 PF=13453 IO=6743 MEM=187

Inner loop count is 12306

Outer loop count is 0

IPL31::GUY 10:46:43 (DCL) CPU=00:03:49.19 PF=13455 IO=6744 MEM=187

Inner loop count is 19200

Outer loop count is 2

Here is a simple C program utilizing the new feature

IPL31> ty ctrlt_looper.c

#include <descrip>

void main()

{

int counter=0;

$DESCRIPTOR(sym_name,"dcl$ctrlt");

static struct dsc$descriptor_s value_desc;

char buffer[256]={0};

value_desc.dsc$b_dtype = DSC$K_DTYPE_T;

value_desc.dsc$b_class = DSC$K_CLASS_S;

while (1){

counter++;

sprintf(buffer,"Counter is %d",counter);

value_desc.dsc$a_pointer = buffer;

value_desc.dsc$w_length = strlen(buffer);

lib$set_symbol(&sym_name,&value_desc);

}
}

IPL31> r ctrlt_looper

IPL31::GUY 10:47:27 CTRLT_LOO CPU=00:03:53.26 PF=13631 IO=6784 MEM=335

Counter is 216766

IPL31::GUY 10:47:28 CTRLT_LOO CPU=00:03:54.45 PF=13631 IO=6785 MEM=335

Counter is 338429

The DCL$CTRLT symbol may have different values in different procedure levels

which I find useful as well.

What do you think? unfortunately we missed the V8.2 train so this

will ship with the first version after V8.2. However, if the response is

positive enough, I'll consider backporting it to V7.3-2 or V8.2

Guy Peleg

OpenVMS Engineering


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alan Winston - SSRL Central Computing  
View profile  
 More options Dec 10 2004, 5:45 pm
Newsgroups: comp.os.vms
From: wins...@SSRL.SLAC.STANFORD.EDU (Alan Winston - SSRL Central Computing)
Date: Fri, 10 Dec 2004 22:45:29 GMT
Local: Fri, Dec 10 2004 5:45 pm
Subject: Re: Customizing the output of CTRL-T

In article <41ba1ea...@usenet01.boi.hp.com>, "Guy Peleg" <guy.peleg@remove_this_hp.com> writes:
>We have added the ability to customize the output of the CTRL-T routine.

[Snippage]

>What do you think? unfortunately we missed the V8.2 train so this

>will ship with the first version after V8.2. However, if the response is

>positive enough, I'll consider backporting it to V7.3-2 or V8.2

I think this is pretty darn cool.  I don't have a business case for backporting
it, and I don't have a need right this second, but I can think of a number of
cases where this would have been very, very handy in the past.

-- Alan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
JF Mezei  
View profile  
 More options Dec 10 2004, 5:57 pm
Newsgroups: comp.os.vms
From: JF Mezei <jfmezei.spam...@teksavvy.com>
Date: Fri, 10 Dec 2004 17:57:31 -0500
Local: Fri, Dec 10 2004 5:57 pm
Subject: Re: Customizing the output of CTRL-T

Guy Peleg wrote:
> We have added the ability to customize the output of the CTRL-T routine.

"We" ???? Shouldn't this be "I" ????  :-)

> If the symbol DCL$CTRLT is defined DCL will append it's contents to
> the traditional CTRL-T output. It allows users to use CTRL-T for their

Neat trick. However, I tried this on my all mighty microvax II (VMS 7.2) and
it doesn't work as documented. The "We" must learn to be better santas to
deliver those improvements to existing systems faster (without customers
realising someone has penetrated their systems to replace DCL.EXE, of course)
:-) :-) :-)

Remember that SANTA gets to deliver goodies inside people's homes without
trigerring any alarms around the world in 24 hours. Shirley you can deliver
little gifts to those 400k systems in less time ? :-)

Also, personally, I would have prefered to see the text added on the same line
if it fits within 80 characters. Would have made for cleaner output.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guy Peleg  
View profile  
 More options Dec 10 2004, 5:56 pm
Newsgroups: comp.os.vms
From: "Guy Peleg" <guy.peleg@remove_this_hp.com>
Date: Sat, 11 Dec 2004 00:56:42 +0200
Local: Fri, Dec 10 2004 5:56 pm
Subject: Re: Customizing the output of CTRL-T

"JF Mezei" <jfmezei.spam...@teksavvy.com> wrote in message

news:41BA29C2.E2126C94@teksavvy.com...

I'm up to the challenge !!! I'm willing to provide VAX image for V7.3

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Stanley F. Quayle  
View profile  
 More options Dec 10 2004, 6:20 pm
Newsgroups: comp.os.vms
From: "Stanley F. Quayle" <squa...@insight.rr.com>
Date: Fri, 10 Dec 2004 18:20:58 -0500
Local: Fri, Dec 10 2004 6:20 pm
Subject: Re: Customizing the output of CTRL-T
On 11 Dec 2004 at 0:56, Guy Peleg wrote:

> I'm up to the challenge !!! I'm willing to provide VAX image for V7.3

Please do.

--Stan Quayle
Quayle Consulting Inc.

----------
Stanley F. Quayle, P.E. N8SQ  +1 614-868-1363
8572 North Spring Ct., Pickerington, OH  43147  USA
stan-at-stanq-dot-com       http://www.stanq.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter 'EPLAN' LANGSTOEGER  
View profile  
 More options Dec 10 2004, 6:29 pm
Newsgroups: comp.os.vms
From: pe...@langstoeger.at (Peter 'EPLAN' LANGSTOEGER)
Date: Fri, 10 Dec 2004 23:29:21 +0000 (UTC)
Local: Fri, Dec 10 2004 6:29 pm
Subject: Re: Customizing the output of CTRL-T
In article <00A3C24F.5B4C1...@SSRL.SLAC.STANFORD.EDU>, wins...@SSRL.SLAC.STANFORD.EDU (Alan Winston - SSRL Central Computing) writes:

>In article <41ba1ea...@usenet01.boi.hp.com>, "Guy Peleg" <guy.peleg@remove_this_hp.com> writes:
>>We have added the ability to customize the output of the CTRL-T routine.
>[Snippage]
>>What do you think? unfortunately we missed the V8.2 train so this
>>will ship with the first version after V8.2. However, if the response is
>>positive enough, I'll consider backporting it to V7.3-2 or V8.2

>I think this is pretty darn cool.  I don't have a business case for backporting
>it, and I don't have a need right this second, but I can think of a number of
>cases where this would have been very, very handy in the past.

Thanks Guy for the good work
(and thanks Alan to find the right words)

--
Peter "EPLAN" LANGSTOEGER
Network and OpenVMS system specialist
E-mail  pe...@langstoeger.at
A-1030 VIENNA  AUSTRIA              I'm not a pessimist, I'm a realist


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter 'EPLAN' LANGSTOEGER  
View profile  
 More options Dec 10 2004, 6:30 pm
Newsgroups: comp.os.vms
From: pe...@langstoeger.at (Peter 'EPLAN' LANGSTOEGER)
Date: Fri, 10 Dec 2004 23:30:54 +0000 (UTC)
Local: Fri, Dec 10 2004 6:30 pm
Subject: Re: Customizing the output of CTRL-T

In article <41ba2...@usenet01.boi.hp.com>, "Guy Peleg" <guy.peleg@remove_this_hp.com> writes:
>I'm up to the challenge !!! I'm willing to provide VAX image for V7.3

Whoopie.
But what has happened to OpenVMS VAX V8.2 ?

--
Peter "EPLAN" LANGSTOEGER
Network and OpenVMS system specialist
E-mail  pe...@langstoeger.at
A-1030 VIENNA  AUSTRIA              I'm not a pessimist, I'm a realist


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alan Frisbie  
View profile  
 More options Dec 10 2004, 7:41 pm
Newsgroups: comp.os.vms
From: Alan Frisbie <Usenet02_REM...@Flying-Disk.com>
Date: Fri, 10 Dec 2004 16:41:13 -0800
Local: Fri, Dec 10 2004 7:41 pm
Subject: Re: Customizing the output of CTRL-T

Guy Peleg wrote:
> We have added the ability to customize the output of the CTRL-T routine.

Guy, you are one Cool Guy!   Thank you very much.   I can think
of many times over the years when this would have save me a *lot*
of debugging time, especially with other people's code.

I'm sorry that it missed the v8.2 cutoff, but if a back-ported
image should become available for either v8.2 or v7.3-2 I will
install it immediately.

Thanks,
Alan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Barry  
View profile  
 More options Dec 10 2004, 11:48 pm
Newsgroups: comp.os.vms
From: "Barry" <dys...@gmail.com>
Date: 10 Dec 2004 20:48:45 -0800
Local: Fri, Dec 10 2004 11:48 pm
Subject: Re: Customizing the output of CTRL-T
I will add my voice to the chorus.  This is a long overdue feature.
Not only would it have helped when debugging complicated loops, but
even when doing file i/o - it would be an easy way to find out what
record you're on (without going into SDA and parsing the RABs). Please
let us know when we can get it and how to put it on the VAXes (Alphas?)
we have access to.  Thanks!!

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Weatherall  
View profile  
 More options Dec 11 2004, 2:06 am
Newsgroups: comp.os.vms
From: "Dave Weatherall" <djw-noth...@nospam.nohow>
Date: 11 Dec 2004 07:06:20 GMT
Local: Sat, Dec 11 2004 2:06 am
Subject: Re: Customizing the output of CTRL-T
On Fri, 10 Dec 2004 21:57:40 UTC, "Guy Peleg"

<guy.peleg@remove_this_hp.com> wrote:
> We have added the ability to customize the output of the CTRL-T routine.

> If the symbol DCL$CTRLT is defined DCL will append it's contents to

> the traditional CTRL-T output. It allows users to use CTRL-T for their

<Snip>

> What do you think? unfortunately we missed the V8.2 train so this

> will ship with the first version after V8.2. However, if the response is

> positive enough, I'll consider backporting it to V7.3-2 or V8.2

> Guy Peleg

> OpenVMS Engineering

Neat !! and useful. How about  7.3-1 too? We finally get to move up to
it next year.

--
Cheers - Dave W.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard Maher  
View profile  
 More options Dec 11 2004, 2:57 am
Newsgroups: comp.os.vms
From: "Richard Maher" <maher...@hotspamnotmail.com>
Date: Sat, 11 Dec 2004 07:57:56 +0000 (UTC)
Local: Sat, Dec 11 2004 2:57 am
Subject: Re: Customizing the output of CTRL-T
Hi,

While I'm all for any and all new functionality, I'm a bit confused on this.
At least, from a 3GL point of view, what does this give you that an
out-of-band CTRL/T AST doesn't? Admittedly DCL is a bit harder; but I
remember at least one example in the old VAX Professional (Oooohh, remember
those!) of a Terminate and Stay Resident job that would do the DCL bits.

Anyway, well done. But sadly it would appear that after the 8.2 workload,
VMS engineering now has some fat that could be trimmed. It's a shame, as I
certainly have some functionality that I'd like to see go in ahead of this.

Regards Richard Maher.

"Guy Peleg" <guy.peleg@remove_this_hp.com> wrote in message

news:41ba1eac$1@usenet01.boi.hp.com...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
R.A.Omond  
View profile  
 More options Dec 11 2004, 4:45 am
Newsgroups: comp.os.vms
From: "R.A.Omond" <Roy.Om...@BlueBubble.UK.Com>
Date: Sat, 11 Dec 2004 09:45:53 +0000
Local: Sat, Dec 11 2004 4:45 am
Subject: Re: Customizing the output of CTRL-T

Guy Peleg wrote:
> We have added the ability to customize the output of the CTRL-T routine.
> If the symbol DCL$CTRLT is defined DCL will append it's contents to
> the traditional CTRL-T output. It allows users to use CTRL-T for their
> own needs in their applications. It may also be used for debugging
> user/supervisor mode code.

Just to add another vote for this !

Excellent, and this will *greatly* aid debugging.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
vaxm...@sendspamhere.org  
View profile  
 More options Dec 11 2004, 7:21 am
Newsgroups: comp.os.vms
From: VAXman- @SendSpamHere.ORG
Date: Sat, 11 Dec 2004 12:21:14 GMT
Local: Sat, Dec 11 2004 7:21 am
Subject: Re: Customizing the output of CTRL-T
In article <cpe9a3$i...@hercules.btinternet.com>, "Richard Maher" <maher...@hotspamnotmail.com> writes:

>Hi,

>While I'm all for any and all new functionality, I'm a bit confused on this.
>At least, from a 3GL point of view, what does this give you that an
>out-of-band CTRL/T AST doesn't? Admittedly DCL is a bit harder; but I
>remember at least one example in the old VAX Professional (Oooohh, remember
>those!) of a Terminate and Stay Resident job that would do the DCL bits.

>Anyway, well done. But sadly it would appear that after the 8.2 workload,
>VMS engineering now has some fat that could be trimmed. It's a shame, as I
>certainly have some functionality that I'd like to see go in ahead of this.

>Regards Richard Maher.

ftp://ftp.process.com/vms-freeware/fileserv/ctrl-verify.zip

--
http://www.ProvN.com  for the *best* OpenVMS system security
                      solutions that others only claim to be.
--
Cyber-Terrorism (si'-ber tayr'-or-iz-em) n.:
  The release of, the sale of, or the use of any Micro$oft software product!
--
VAXman- A Bored Certified VMS Kernel Mode Hacker   VAXman(at)TMESIS(dot)COM


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
vaxm...@sendspamhere.org  
View profile  
 More options Dec 11 2004, 7:30 am
Newsgroups: comp.os.vms
From: VAXman- @SendSpamHere.ORG
Date: Sat, 11 Dec 2004 12:30:18 GMT
Local: Sat, Dec 11 2004 7:30 am
Subject: Re: Customizing the output of CTRL-T
In article <cpe9a3$i...@hercules.btinternet.com>, "Richard Maher" <maher...@hotspamnotmail.com> writes:

>Hi,

>While I'm all for any and all new functionality, I'm a bit confused on this.
>At least, from a 3GL point of view, what does this give you that an
>out-of-band CTRL/T AST doesn't? Admittedly DCL is a bit harder; but I
>remember at least one example in the old VAX Professional (Oooohh, remember
>those!) of a Terminate and Stay Resident job that would do the DCL bits.

>Anyway, well done. But sadly it would appear that after the 8.2 workload,
>VMS engineering now has some fat that could be trimmed. It's a shame, as I
>certainly have some functionality that I'd like to see go in ahead of this.

ftp://ftp.process.com/vms-freeware/fileserv/ctrl-verify.zip

--
http://www.ProvN.com  for the *best* OpenVMS system security
                      solutions that others only claim to be.
--
Cyber-Terrorism (si'-ber tayr'-or-iz-em) n.:
  The release of, the sale of, or the use of any Micro$oft software product!
--
VAXman- A Bored Certified VMS Kernel Mode Hacker   VAXman(at)TMESIS(dot)COM


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guy Peleg  
View profile  
 More options Dec 11 2004, 9:52 am
Newsgroups: comp.os.vms
From: "Guy Peleg" <guy.peleg@remove_this_hp.com>
Date: Sat, 11 Dec 2004 16:52:22 +0200
Local: Sat, Dec 11 2004 9:52 am
Subject: Re: Customizing the output of CTRL-T
All people responded suggested they would benefit using
this in debugging situations. I might say that I was a little
surprised. While this makes a great debugging tool it may
also use in your applications to indicate some kind of progress.
Assuming I'm calculating the largest prime number, I might
define the symbol (in the application) to indicate what is the
current number being processed (maybe update the symbol
only every 50000 loop iteration)....

It is always surprising to see how people use our features.

Thank you for your valuable feedback. Keep it coming

Guy


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Larry Kilgallen  
View profile  
 More options Dec 11 2004, 10:05 am
Newsgroups: comp.os.vms
From: Kilgal...@SpamCop.net (Larry Kilgallen)
Date: 11 Dec 2004 09:05:02 -0600
Local: Sat, Dec 11 2004 10:05 am
Subject: Re: Customizing the output of CTRL-T
In article <cpe9a3$i...@hercules.btinternet.com>, "Richard Maher" <maher...@hotspamnotmail.com> writes:

> While I'm all for any and all new functionality, I'm a bit confused on this.
> At least, from a 3GL point of view, what does this give you that an
> out-of-band CTRL/T AST doesn't? Admittedly DCL is a bit harder; but I

As I see it, being able to do it from DCL is the goal, and being able
to use it from a real program just falls out for free due to the way
it is implemented.

> remember at least one example in the old VAX Professional (Oooohh, remember
> those!) of a Terminate and Stay Resident job that would do the DCL bits.

This implementation is (or will be) SUPPORTED !!!

That is crucial for many sites.

Terminate and Stay Resident is for another operating system :-)

> Anyway, well done. But sadly it would appear that after the 8.2 workload,
> VMS engineering now has some fat that could be trimmed.

What makes you say that ?  While adding this feature may not be so
crucial a job for Guy as making LMF work for Itanium, this category
of change is what VMS Development used to call a "delighter".  It
will not sell any additional machines per se, but it keeps the loyal
VMS fans enthused, which is quite important.  A similar status is
true for other forthcoming features discussed at the VMS Symposium
in Nashua -- much desired by those customers who personally use VMS
but not strategic enough to slow down the Itanium release.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Larry Kilgallen  
View profile  
 More options Dec 11 2004, 9:58 am
Newsgroups: comp.os.vms
From: Kilgal...@SpamCop.net (Larry Kilgallen)
Date: 11 Dec 2004 08:58:24 -0600
Local: Sat, Dec 11 2004 9:58 am
Subject: Re: Customizing the output of CTRL-T

In article <41ba2...@usenet01.boi.hp.com>, "Guy Peleg" <guy.peleg@remove_this_hp.com> writes:
> I'm up to the challenge !!! I'm willing to provide VAX image for V7.3

But if you can get the feature into the VAX 8.2 release, for once
VAX would be ahead of Alpha in getting the new stuff !!!

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Larry Kilgallen  
View profile  
 More options Dec 11 2004, 10:07 am
Newsgroups: comp.os.vms
From: Kilgal...@SpamCop.net (Larry Kilgallen)
Date: 11 Dec 2004 09:07:16 -0600
Local: Sat, Dec 11 2004 10:07 am
Subject: Re: Customizing the output of CTRL-T

In article <41bb0c8...@usenet01.boi.hp.com>, "Guy Peleg" <guy.peleg@remove_this_hp.com> writes:
> All people responded suggested they would benefit using
> this in debugging situations. I might say that I was a little
> surprised. While this makes a great debugging tool it may
> also use in your applications to indicate some kind of progress.
> Assuming I'm calculating the largest prime number, I might
> define the symbol (in the application) to indicate what is the
> current number being processed (maybe update the symbol
> only every 50000 loop iteration)....

I gather from the idea of only updating every so often that Guy
does not get paid according to how much time customer machines
spend in Supervisor Mode :-)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Brooks  
View profile  
 More options Dec 11 2004, 12:34 pm
Newsgroups: comp.os.vms
From: bro...@cuebid.zko.dec.nospam (Rob Brooks)
Date: 11 Dec 2004 12:34:06 -0500
Local: Sat, Dec 11 2004 12:34 pm
Subject: Re: Customizing the output of CTRL-T

"Dave Weatherall" <djw-noth...@nospam.nohow> writes:
> Neat !! and useful. How about  7.3-1 too? We finally get to move up to
> it next year.

Since V7.3-1 is not supported after the end of the calendar year (and it
is not eligible for prior version support), there is a reluctance to spend time
working on unsupported software.

Please note that I'm not speaking for Guy, however.

--

Rob Brooks    VMS Engineering -- I/O Exec Group     brooks!cuebid.zko.dec.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard Levitte  
View profile  
 More options Dec 11 2004, 1:29 pm
Newsgroups: comp.os.vms
From: "Richard Levitte" <levi...@gmail.com>
Date: 11 Dec 2004 10:29:42 -0800
Local: Sat, Dec 11 2004 1:29 pm
Subject: Re: Customizing the output of CTRL-T
Guy Peleg wrote:
> We have added the ability to customize the output of the CTRL-T
routine.

> If the symbol DCL$CTRLT is defined DCL will append it's contents to
> the traditional CTRL-T output. It allows users to use CTRL-T for
their
> own needs in their applications. It may also be used for debugging
> user/supervisor mode code.

I love this idea!  Please implement.

--
Richard Levitte


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guy Peleg  
View profile  
 More options Dec 11 2004, 2:19 pm
Newsgroups: comp.os.vms
From: "Guy Peleg" <guy.peleg@remove_this_hp.com>
Date: Sat, 11 Dec 2004 21:19:41 +0200
Local: Sat, Dec 11 2004 2:19 pm
Subject: Re: Customizing the output of CTRL-T
I agree
"Rob Brooks" <bro...@cuebid.zko.dec.nospam> wrote in message

news:i$He1NdABMNT@cuebid.zko.dec.com...
> "Dave Weatherall" <djw-noth...@nospam.nohow> writes:
> > Neat !! and useful. How about  7.3-1 too? We finally get to move up to
> > it next year.

> Since V7.3-1 is not supported after the end of the calendar year (and it
> is not eligible for prior version support), there is a reluctance to spend
time
> working on unsupported software.

> Please note that I'm not speaking for Guy, however.

> --

> Rob Brooks    VMS Engineering -- I/O Exec Group

brooks!cuebid.zko.dec.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard Maher  
View profile  
 More options Dec 11 2004, 2:39 pm
Newsgroups: comp.os.vms
From: "Richard Maher" <maher...@hotspamnotmail.com>
Date: Sat, 11 Dec 2004 19:39:41 +0000 (UTC)
Local: Sat, Dec 11 2004 2:39 pm
Subject: Re: Customizing the output of CTRL-T
Hi Guy,

> All people responded suggested they would benefit using
> this in debugging situations.

No they didn't. I suggested it was a waste of time and money.

>While this makes a great debugging tool it may
> also use in your applications to indicate some kind of progress.

Maybe something like: -

DO6 >> rmu/unload my_db my_table my_table
MYNODE::MAHER_R 18:21:35 RMU71     CPU=00:00:05.03 PF=3245 IO=4688 MEM=1150
--------------------------------------------------------------------------- -
----
 ELAPSED:    0 00:00:02.30  CPU: 0:00:01.81  BUFIO: 98  DIRIO: 1623  FAULTS:
1041
  21750 records unloaded.
--------------------------------------------------------------------------- -
----
MYNODE::MAHER_R 18:21:38 RMU71     CPU=00:00:06.93 PF=3286 IO=6418 MEM=1150
--------------------------------------------------------------------------- -
----
 ELAPSED:    0 00:00:04.59  CPU: 0:00:03.71  BUFIO: 119  DIRIO: 3332
FAULTS: 1057
  55950 records unloaded.
--------------------------------------------------------------------------- -
----
%RMU-I-DATRECUNL,   97191 data records unloaded.

. . . or is your wheel just that bit rounder than everybody elses?

> (maybe update the symbol only every 50000 loop iteration)....

Or you could bypass the overhead of updating a DCL symbol and simply dump
the contents of local working-storage.

Regards Richard Maher

"Guy Peleg" <guy.peleg@remove_this_hp.com> wrote in message

news:41bb0c85$1@usenet01.boi.hp.com...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
JF Mezei  
View profile  
 More options Dec 11 2004, 2:50 pm
Newsgroups: comp.os.vms
From: JF Mezei <jfmezei.spam...@teksavvy.com>
Date: Sat, 11 Dec 2004 14:50:24 -0500
Local: Sat, Dec 11 2004 2:50 pm
Subject: Re: Customizing the output of CTRL-T

Larry Kilgallen wrote:
> What makes you say that ?  While adding this feature may not be so
> crucial a job for Guy as making LMF work for Itanium, this category
> of change is what VMS Development used to call a "delighter".  It
> will not sell any additional machines per se, but it keeps the loyal
> VMS fans enthused,

I disagree. As an operating system, it is those little "unimportant" features
that Guy is addding which most improve our productivity as VMS
users/programmers/system managers. They benefit a hell of a lot more features
than the ability to build a cluster with nodes on mars , moon and earth.
(earth having more votes than moon and mars).

VMS management has decided that VMS should only be for very large sites, at
which point the priorities do become clustering for far away backup sites,
using fancy fibre stuff for disk arrays etcm, but the vasty majorioty fo the
POTENTIAL vms customer base doesn't benefit from this. They benefit from the
neat little gadgets that Guy adds to VMS.

The installed base doesn't quite benefit from Guy's neat little gadgets since
they are not availabel on the version they are running.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Larry Kilgallen  
View profile  
 More options Dec 11 2004, 4:52 pm
Newsgroups: comp.os.vms
From: Kilgal...@SpamCop.net (Larry Kilgallen)
Date: 11 Dec 2004 15:52:26 -0600
Local: Sat, Dec 11 2004 4:52 pm
Subject: Re: Customizing the output of CTRL-T

In article <cpfids$88...@titan.btinternet.com>, "Richard Maher" <maher...@hotspamnotmail.com> writes:
>> All people responded suggested they would benefit using
>> this in debugging situations.

> No they didn't. I suggested it was a waste of time and money.

That seems a bit harsh.  It also seems a bit imperious, since I doubt
that anybody other than Guy knows how hard or easy it was to implement
(excluding the time to think about the need).

Personally, I don't think I would benefit from this, due to how I spend
my time on VMS.

But I am fully willing to admit that _other_ may get considerable
benefit from the feature.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David J Dachtera  
View profile  
 More options Dec 11 2004, 5:48 pm
Newsgroups: comp.os.vms
From: David J Dachtera <djesys.nos...@comcast.net>
Date: Sat, 11 Dec 2004 16:48:05 -0600
Local: Sat, Dec 11 2004 5:48 pm
Subject: Re: Customizing the output of CTRL-T

Guy Peleg wrote:

> All people responded suggested they would benefit using
> this in debugging situations. I might say that I was a little
> surprised. While this makes a great debugging tool it may
> also use in your applications to indicate some kind of progress.
> Assuming I'm calculating the largest prime number, I might
> define the symbol (in the application) to indicate what is the
> current number being processed (maybe update the symbol
> only every 50000 loop iteration)....

> It is always surprising to see how people use our features.

> Thank you for your valuable feedback. Keep it coming

Bravo! Excellent new feature! Will come in very handy, I'm sure!

As there are precious few debugging tools available for DCL, how 'bout
back-porting as far as possible, preferably at least to VAX V5.5-2, and
Alpha V6.2, V7.1-2, V7.2-2, V7.3-2 (the Alpha "landing zones").

For future enhancements, how about:

$! DCL$CTRLT_DEBUG as a bitmap:
$! Bit  0 = Display procedure line number
$! Bit  1 = Display all local symbols
$! Bit  2 = Display all global symbols
$! Bit  3 = Display most recent label
$! Bit  4 = Display current procedure depth
$! Bit  5 = Display current procedure filespec
$! Bit  6 = Display current statement
$! Bit  7 = Display calling procedure filespec
$! Bit  8 - 15 Reserved
$ DCL$CTRLT_DEBUG == 1 + 2 + 8 + 16 + 64 + 128

$ TYPE MYPROC.COM
$!
$LABEL_1:
$ WAIT 00:00:15
$ EXIT

$ @MYPROC
^T
DJAS01::DJD 10:46:43 (DCL) CPU=00:03:49.19 PF=13455 IO=6744 MEM=187
 LINE = 3
 P1 = ""
 P2 = ""
 P3 = ""
 P4 = ""
 P5 = ""
 P6 = ""
 P7 = ""
 P8 = ""
 LABEL = "LABEL_1"
 DEPTH = 1
 COMMAND = "WAIT 00:00:15"
 CALLER = "SYS$COMMAND"

--
David J Dachtera
dba DJE Systems
http://www.djesys.com/

Unofficial OpenVMS Hobbyist Support Page:
http://www.djesys.com/vms/support/

Unofficial Affordable OpenVMS Home Page:
http://www.djesys.com/vms/soho/

Unofficial OpenVMS-IA32 Home Page:
http://www.djesys.com/vms/ia32/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 37   Newer >
« Back to Discussions « Newer topic     Older topic »