| OLD | NEW |
| 1 Index: coregrind/m_syswrap/syswrap-generic.c | 1 Index: coregrind/m_syswrap/syswrap-generic.c |
| 2 =================================================================== | 2 =================================================================== |
| 3 --- coregrind/m_syswrap/syswrap-generic.c (revision 10880) | 3 --- coregrind/m_syswrap/syswrap-generic.c (revision 10880) |
| 4 +++ coregrind/m_syswrap/syswrap-generic.c (working copy) | 4 +++ coregrind/m_syswrap/syswrap-generic.c (working copy) |
| 5 @@ -2563,6 +2563,11 @@ | 5 @@ -2563,6 +2563,11 @@ |
| 6 | 6 |
| 7 } else { | 7 } else { |
| 8 path = (Char*)ARG1; | 8 path = (Char*)ARG1; |
| 9 + if (VG_(clo_xml)) { | 9 + if (VG_(clo_xml)) { |
| 10 + VG_(printf_xml)("\n<execv/>\n\n</valgrindoutput>\n\n"); | 10 + VG_(printf_xml)("\n<execv/>\n\n</valgrindoutput>\n\n"); |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 @@ -74,6 +74,9 @@ | 377 @@ -74,6 +74,9 @@ |
| 378 extern Char* VG_(clo_log_fname_expanded); | 378 extern Char* VG_(clo_log_fname_expanded); |
| 379 extern Char* VG_(clo_xml_fname_expanded); | 379 extern Char* VG_(clo_xml_fname_expanded); |
| 380 | 380 |
| 381 +extern Char* VG_(clo_log_fname_unexpanded); | 381 +extern Char* VG_(clo_log_fname_unexpanded); |
| 382 +extern Char* VG_(clo_xml_fname_unexpanded); | 382 +extern Char* VG_(clo_xml_fname_unexpanded); |
| 383 + | 383 + |
| 384 /* Add timestamps to log messages? default: NO */ | 384 /* Add timestamps to log messages? default: NO */ |
| 385 extern Bool VG_(clo_time_stamp); | 385 extern Bool VG_(clo_time_stamp); |
| 386 | 386 |
| OLD | NEW |