gdb/gdbserver/
* tracepoint.c (trace_vdebug): Differentiate debug message between gdbserver and IPA.
This commit is contained in:
parent
1dabb4c407
commit
ae639e8c92
2 changed files with 9 additions and 0 deletions
|
@ -63,7 +63,11 @@ trace_vdebug (const char *fmt, ...)
|
|||
|
||||
va_start (ap, fmt);
|
||||
vsprintf (buf, fmt, ap);
|
||||
#ifdef IN_PROCESS_AGENT
|
||||
fprintf (stderr, "ipa/tracepoint: %s\n", buf);
|
||||
#else
|
||||
fprintf (stderr, "gdbserver/tracepoint: %s\n", buf);
|
||||
#endif
|
||||
va_end (ap);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue