X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fspawn-viewer.h;h=316fe19982372e0d64e6fc33c7aedbe10fa77347;hb=48a4000561343808724f7cb5fa8c131877489ccd;hp=5789246821202bcff529f2288f81ab88a1b82c78;hpb=dd392e9453fb7aa5f356ed1765db72ef33150461;p=lttng-tools.git diff --git a/src/common/spawn-viewer.h b/src/common/spawn-viewer.h index 578924682..316fe1998 100644 --- a/src/common/spawn-viewer.h +++ b/src/common/spawn-viewer.h @@ -10,13 +10,24 @@ #include +#if defined(__cplusplus) +extern "C" { +#endif + /* * Read the trace by `exec()ing` the provided viewer program if any. If * `opt_viewer` is NULL, try to read the trace with the default trace reader. * On success, this function doesn't return. * Returns -1 if the `opt_viewer` string or the default trace viewer can't be * `exec()`. + * + * This symbol was mistakenly made public before the 2.12 release. It can't + * be removed (but it can be stubbed-out if necessary). */ int spawn_viewer(const char *trace_path, char *opt_viewer, bool opt_live_mode); +#if defined(__cplusplus) +} +#endif + #endif /* ifndef LTTNG_SPAWN_VIEWER_H */