mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-07 05:31:17 -07:00
Patch from 'buzzy' to add automatic flushing of output, see http://www.proxmark.org/forum/viewtopic.php?id=1740 for more details.
This commit is contained in:
parent
2dcdf1a683
commit
ed77aabe00
3 changed files with 17 additions and 2 deletions
|
@ -243,6 +243,16 @@ int main(int argc, char* argv[]) {
|
||||||
|
|
||||||
// If the user passed the filename of the 'script' to execute, get it
|
// If the user passed the filename of the 'script' to execute, get it
|
||||||
if (argc > 2 && argv[2]) {
|
if (argc > 2 && argv[2]) {
|
||||||
|
if (argv[2][0] == 'f' && //buzzy, if a word 'flush' passed, flush the output after every log entry.
|
||||||
|
argv[2][1] == 'l' &&
|
||||||
|
argv[2][2] == 'u' &&
|
||||||
|
argv[2][3] == 's' &&
|
||||||
|
argv[2][4] == 'h')
|
||||||
|
{
|
||||||
|
printf("Output will be flushed after every print.\n");
|
||||||
|
flushAfterWrite = 1;
|
||||||
|
}
|
||||||
|
else
|
||||||
marg.script_cmds_file = argv[2];
|
marg.script_cmds_file = argv[2];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
double CursorScaleFactor;
|
double CursorScaleFactor;
|
||||||
int PlotGridX, PlotGridY, PlotGridXdefault= 64, PlotGridYdefault= 64;
|
int PlotGridX, PlotGridY, PlotGridXdefault= 64, PlotGridYdefault= 64;
|
||||||
int offline;
|
int offline;
|
||||||
|
int flushAfterWrite = 0; //buzzy
|
||||||
extern pthread_mutex_t print_lock;
|
extern pthread_mutex_t print_lock;
|
||||||
|
|
||||||
static char *logfilename = "proxmark3.log";
|
static char *logfilename = "proxmark3.log";
|
||||||
|
@ -77,6 +77,10 @@ void PrintAndLog(char *fmt, ...)
|
||||||
}
|
}
|
||||||
va_end(argptr2);
|
va_end(argptr2);
|
||||||
|
|
||||||
|
if (flushAfterWrite == 1) //buzzy
|
||||||
|
{
|
||||||
|
fflush(NULL);
|
||||||
|
}
|
||||||
//release lock
|
//release lock
|
||||||
pthread_mutex_unlock(&print_lock);
|
pthread_mutex_unlock(&print_lock);
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,5 +21,6 @@ void SetLogFilename(char *fn);
|
||||||
extern double CursorScaleFactor;
|
extern double CursorScaleFactor;
|
||||||
extern int PlotGridX, PlotGridY, PlotGridXdefault, PlotGridYdefault;
|
extern int PlotGridX, PlotGridY, PlotGridXdefault, PlotGridYdefault;
|
||||||
extern int offline;
|
extern int offline;
|
||||||
|
extern int flushAfterWrite; //buzzy
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue