1. 11 Dec, 2013 1 commit
    • pianofab's avatar
      Report details about fork() failure in logs. · 6ba48cc9
      pianofab authored
      When parsing a large codebase dot failed to start. Adding this line helped narrow down the issue. Increasing my VirtualBox VM RAM size worked around the issue. A proper fix would be to spawn separate processes without using fork() so they don't start with the giant address space used by the current process.
      6ba48cc9
  2. 08 Dec, 2013 4 commits
  3. 07 Dec, 2013 10 commits
  4. 02 Dec, 2013 1 commit
  5. 01 Dec, 2013 7 commits
  6. 30 Nov, 2013 2 commits
  7. 29 Nov, 2013 3 commits
  8. 26 Nov, 2013 1 commit
  9. 23 Nov, 2013 2 commits
  10. 17 Nov, 2013 6 commits
  11. 13 Nov, 2013 1 commit
    • Albert's avatar
      Debug output for lexical analyzer · 3c0a246b
      Albert authored
      In case of error messages like:
          input buffer overflow, can't enlarge buffer because scanner uses REJECT
      it is not always directly clear from which lexical analyzer (.l file) this problem comes.
      This patch helps to find these problems and does the following things:
      - when using the option -d lex with doxygen each time a lexical analyzer is called at the start a line like the following line will be given:
          Entering lexical analyzer: pre.l (for: ..../file.c)
        and at the end:
          Finished lexical analyzer: pre.l (for: ..../file.c)
      - in case the lexical analyzer has been translated with the -d option of lex / flex the above mentioned lines will be given as part of the lexical analyzer output (to stderr) and look like:
          --entering lexical analyzer: pre.l (for: ..../file.c)
          --finished lexical analyzer: pre.l (for: ..../file.c)
      3c0a246b
  12. 11 Nov, 2013 2 commits