Changes between Version 3 and Version 4 of Documentation/UserGuide/HangCrash


Ignore:
Timestamp:
2015-01-12T13:48:48+01:00 (9 years ago)
Author:
luyssaert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/HangCrash

    v3 v4  
    2121If this code is pasted in the model before the lines where the model hangs ALL processors will stop with the error message written in ipslerr. If this code is pasted after the lines which make the model hang, all processors will stop with the error message except the one that hangs. 
    2222 
     23=== Flush the memory === 
     24{{{ 
     25CALL flush(numout) 
     26}}} 
     27 
     28This puts everything stored in the buffer of numout into the file.  So if you add some write statements and put this call right after them, if you see the write statement in the output file, you know the processor made it to that write statement.  If you don't see the write statement, the processor did not make it there.  "flush" is not used in generally because it slows down the code a bit, but in debugging it is very useful. 
    2329