Changeset 26a1398 for functions.c


Ignore:
Timestamp:
Jul 27, 2010, 9:10:44 PM (14 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
release-1.6
Children:
6687135
Parents:
0f6ea94
git-author:
Nelson Elhage <nelhage@mit.edu> (07/15/10 23:35:12)
git-committer:
Nelson Elhage <nelhage@mit.edu> (07/27/10 21:10:44)
Message:
Keep the debug file open persistently.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    r258a3bf r26a1398  
    12041204    return;
    12051205
    1206   file = fopen(owl_global_get_debug_file(&g), "a");
     1206  file = owl_global_get_debug_file_handle(&g);
    12071207  if (!file) /* XXX should report this */
    12081208    return;
     
    12141214  vfprintf(file, fmt, ap);
    12151215  putc('\n', file);
    1216   fclose(file);
     1216  fflush(file);
    12171217
    12181218  va_end(ap);
Note: See TracChangeset for help on using the changeset viewer.