LB Booster
« debug-yes;regular-no »

Welcome Guest. Please Login or Register.
Apr 1st, 2018, 03:27am



ATTENTION MEMBERS: Conforums will be closing it doors and discontinuing its service on April 15, 2018.
We apologize Conforums does not have any export functions to migrate data.
Ad-Free has been deactivated. Outstanding Ad-Free credits will be reimbursed to respective payment methods.

Thank you Conforums members.
Speed up Liberty BASIC programs by up to ten times!
Compile Liberty BASIC programs to compact, standalone executables!
Overcome many of Liberty BASIC's bugs and limitations!
LB Booster Resources
LB Booster documentation
LB Booster Home Page
LB Booster technical Wiki
Just BASIC forum
BBC BASIC Home Page
Liberty BASIC forum (the original)

« Previous Topic | Next Topic »
Pages: 1  Notify Send Topic Print
 thread  Author  Topic: debug-yes;regular-no  (Read 181 times)
Alincon
Full Member
ImageImageImage


member is offline

Avatar




PM


Posts: 147
xx debug-yes;regular-no
« Thread started on: Dec 3rd, 2017, 5:26pm »

Is it possible in LBB to have a program run differently in debug mode than in regular mode - like failing to add a record to a random file?

I have posted a message similar to this one, and some of the code on the 'other' forum.

r.m.
User IP Logged

Alincon
Full Member
ImageImageImage


member is offline

Avatar




PM


Posts: 147
xx Re: debug-yes;regular-no
« Reply #1 on: Dec 3rd, 2017, 9:36pm »

I should have noted that my program works as intended in LBB, regardless of mode. (yea!)

r.m.
User IP Logged

Richard Russell
Administrator
ImageImageImageImageImage


member is offline

Avatar




Homepage PM


Posts: 1348
xx Re: debug-yes;regular-no
« Reply #2 on: Dec 3rd, 2017, 10:31pm »

on Dec 3rd, 2017, 5:26pm, Alincon wrote:
Is it possible in LBB to have a program run differently in debug mode than in regular mode - like failing to add a record to a random file?

The only (intentional!) differences between LBB's 'normal' and 'debug' modes are as follows:
  1. 'Temporary' breakpoints (inserted by double-clicking in the left margin) cause the program to pause at that statement in 'debug' mode, but not in 'normal' mode.

  2. A 'permanent' breakpoint (i.e. a TRACE 2 statement) causes the program to pause when in 'debug' mode but has no effect - other than a slight impact on execution time - when in 'normal' mode.

  3. The NOMAINWIN statement is ignored in 'debug' mode, causing the mainwin always to be displayed.
Does that answer your question?

Richard.
User IP Logged

Alincon
Full Member
ImageImageImage


member is offline

Avatar




PM


Posts: 147
xx Re: debug-yes;regular-no
« Reply #3 on: Dec 5th, 2017, 7:19pm »

(As frequently happens) the problem was really mine: I did not close the random file before closing the program. In my defense, I got no error message in LB. In LBB there was no message either, but it worked.
Evidently, LBB handles unclosed files differently.

r.m.
User IP Logged

Richard Russell
Administrator
ImageImageImageImageImage


member is offline

Avatar




Homepage PM


Posts: 1348
xx Re: debug-yes;regular-no
« Reply #4 on: Dec 5th, 2017, 7:50pm »

on Dec 5th, 2017, 7:19pm, Alincon wrote:
Evidently, LBB handles unclosed files differently.

LBB should automatically close files on exit; I would have thought that was normal behavior. If LB 4 doesn't work that way I am surprised, but I suppose you should not have assumed it would.

Richard.
User IP Logged

Rod
Full Member
ImageImageImage


member is offline

Avatar




PM

Gender: Male
Posts: 110
xx Re: debug-yes;regular-no
« Reply #5 on: Dec 6th, 2017, 07:09am »

The problem was a little different to that described. The program did not END, it simply closed its window. I have not tested but I sssume LBB might behave the same way as LB. it hangs quietly in the background doing what it was instructed to do.
User IP Logged

Richard Russell
Administrator
ImageImageImageImageImage


member is offline

Avatar




Homepage PM


Posts: 1348
xx Re: debug-yes;regular-no
« Reply #6 on: Dec 6th, 2017, 08:30am »

on Dec 6th, 2017, 07:09am, Rod wrote:
The problem was a little different to that described. The program did not END, it simply closed its window.

Ah, that is indeed very different. In that case the file will remain open indefinitely and there is no guarantee that data written with a PRINT# or PUT# will have been 'flushed' to the actual storage device (and thus be visible to, for example, another program looking at the same file).

In fact I might expect that LBB would, if anything, be more vulnerable to that possibility, because for performance reasons it stores output data in a temporary buffer which gets written only when full (or when the file is closed).

If you need to commit data to disk without closing the file there is a 'trick' you can use in LBB:

Code:
    SEEK #file, LOC(#file) 

Whilst you might expect that setting the file pointer to its current position would do nothing, it has the side-effect of flushing LBB's buffers.

Richard.
User IP Logged

Pages: 1  Notify Send Topic Print
« Previous Topic | Next Topic »

| |

This forum powered for FREE by Conforums ©
Terms of Service | Privacy Policy | Conforums Support | Parental Controls