Oh, ok, no worries - this stuff isn't mission critical per se :)
Hopefully Johnny will see this thread at some point.
Sampsa
On 22 Mar 2011, at 13:48, Pontus Pihlgren wrote:
I'm afraid I don't have bouncing privileges.
/P
On Tue, Mar 22, 2011 at 01:42:00PM +0000, Sampsa Laine wrote:
No just the bridge program, just restart it.
Sampsa
On 22 Mar 2011, at 13:39, Pontus Pihlgren wrote:
On Tue, Mar 22, 2011 at 01:35:02PM +0000, Sampsa Laine wrote:
Yeah, I'm not getting any traffic from you at all - I've bounced the bridge and router multiple times.
Could you try bouncing your end?
Ehm, bouncing hardware sounds harmfull. I think we need BQT to help us
out.
/P
I'm afraid I don't have bouncing privileges.
/P
On Tue, Mar 22, 2011 at 01:42:00PM +0000, Sampsa Laine wrote:
No just the bridge program, just restart it.
Sampsa
On 22 Mar 2011, at 13:39, Pontus Pihlgren wrote:
On Tue, Mar 22, 2011 at 01:35:02PM +0000, Sampsa Laine wrote:
Yeah, I'm not getting any traffic from you at all - I've bounced the bridge and router multiple times.
Could you try bouncing your end?
Ehm, bouncing hardware sounds harmfull. I think we need BQT to help us
out.
/P
No just the bridge program, just restart it.
Sampsa
On 22 Mar 2011, at 13:39, Pontus Pihlgren wrote:
On Tue, Mar 22, 2011 at 01:35:02PM +0000, Sampsa Laine wrote:
Yeah, I'm not getting any traffic from you at all - I've bounced the bridge and router multiple times.
Could you try bouncing your end?
Ehm, bouncing hardware sounds harmfull. I think we need BQT to help us
out.
/P
On Tue, Mar 22, 2011 at 01:35:02PM +0000, Sampsa Laine wrote:
Yeah, I'm not getting any traffic from you at all - I've bounced the bridge and router multiple times.
Could you try bouncing your end?
Ehm, bouncing hardware sounds harmfull. I think we need BQT to help us
out.
/P
Yeah, I'm not getting any traffic from you at all - I've bounced the bridge and router multiple times.
Could you try bouncing your end?
Sampsa
On 22 Mar 2011, at 13:30, Pontus Pihlgren wrote:
Hi
Nope, the main servers are up and MIM seems to be running fine. I'll
investigate some more. But as far as I can see things are up.
/P
On Tue, Mar 22, 2011 at 01:17:38PM +0000, Sampsa Laine wrote:
Is update still down then? I'm still unable to connect.
Sampsa
On 22 Mar 2011, at 07:41, Pontus Pihlgren wrote:
On Tue, Mar 22, 2011 at 05:42:36AM +0000, Sampsa Laine wrote:
My bridge doesn't seem to be connecting at the moment - is update OK?
We have been fighting with a bad UPS tonight. Power is restored and the
UPS is no longer connected.
/Pontus
Hi
Nope, the main servers are up and MIM seems to be running fine. I'll
investigate some more. But as far as I can see things are up.
/P
On Tue, Mar 22, 2011 at 01:17:38PM +0000, Sampsa Laine wrote:
Is update still down then? I'm still unable to connect.
Sampsa
On 22 Mar 2011, at 07:41, Pontus Pihlgren wrote:
On Tue, Mar 22, 2011 at 05:42:36AM +0000, Sampsa Laine wrote:
My bridge doesn't seem to be connecting at the moment - is update OK?
We have been fighting with a bad UPS tonight. Power is restored and the
UPS is no longer connected.
/Pontus
Is update still down then? I'm still unable to connect.
Sampsa
On 22 Mar 2011, at 07:41, Pontus Pihlgren wrote:
On Tue, Mar 22, 2011 at 05:42:36AM +0000, Sampsa Laine wrote:
My bridge doesn't seem to be connecting at the moment - is update OK?
We have been fighting with a bad UPS tonight. Power is restored and the
UPS is no longer connected.
/Pontus
On Tue, Mar 22, 2011 at 05:42:36AM +0000, Sampsa Laine wrote:
My bridge doesn't seem to be connecting at the moment - is update OK?
We have been fighting with a bad UPS tonight. Power is restored and the
UPS is no longer connected.
/Pontus
On 13/03/11 23:27, Marc Chametzky wrote:
Purely out of interest, how would I diassemble a DEC C routine on
VAX/VMS? Can I use DEBUG to do this?
Yes, you can use DEBUG for this.
If I remembered how to use the VMS debugger better, I'd give you more detailed information, but what you can do is set a breakpoint at the strcpy(), and then STEP/INTO to go into DECC$STRCPY. Since there's no source for it, DEBUG will show you the VAX instructions.
Let me see what I can do. Warning: I'm very, very rusty! :-)
Okay, I compiled and linked the program /DEBUG.
Then, I ran the program and stepped to the strcpy() line.
I used "SET MODE SCREEN" to enable full-screen debugging and then "DISP INST AT RH1" to put the VAX instructions on the screen next to the source.
Using "SET STEP INST" will step by instructions instead of source lines. You can then use "STEP/INTO" to step into the RTL and see the instructions as you step through it.
Without symbols in DECC$SHR, you're probably not going to get much out of it, but at least you can see what's there.
--Marc
Thanks for all the suggestions! I half guessed using DEBUG in this case might be the easiest solution for me, I was more rusty in not remembering any of the commands.
Regards, Mark.