Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
  • core files are bad: debug them with gdb
    • For most crashes with LICOS:
      • $ gdb `which python` core.12345
      • (gdb) where
      • to get a traceback. core.12345 is the most recent core file in your running directory.
      • Traceback will tell you approximately where you failed.
      • You can also 'print' variables to determine their contents.
    • to turn them offish, "limit coredumpsize 0" in cshrc will turn the size down to 0, but won't prevent the file from being created.

...