|
8 | 8 | #define TRACE_H |
9 | 9 |
|
10 | 10 | #if !defined(__CUDA_ARCH__) /* Allow inclusion into CUDA file (including .cu files) */ |
11 | | -# define TRACE_REV "$Revision: 1734 $$Date: 2026-02-25 07:39:20 -0600 (Wed, 25 Feb 2026) $" |
| 11 | +# define TRACE_REV "$Revision: 1739 $$Date: 2026-03-17 13:52:01 -0500 (Tue, 17 Mar 2026) $" |
12 | 12 |
|
13 | 13 | // The C++ streamer style macros............................................... |
14 | 14 | /* |
|
217 | 217 | debugging information. For example: |
218 | 218 | if (TTEST(lvl)) { |
219 | 219 | // prep code |
220 | | - // possible looping -- severerl TLOGs/TRACEs |
| 220 | + // possible looping -- several TLOGs/TRACEs |
221 | 221 | } |
222 | 222 | NOTE: for C++ similar functionality can be obtain with TLOG*(...) macros and lambda's: |
223 | 223 | TLOG() << [&](){ |
@@ -331,7 +331,7 @@ enum tlvle_t { TRACE_LVL_ENUM_0_9, TRACE_LVL_ENUM_10_63 }; |
331 | 331 | # endif |
332 | 332 |
|
333 | 333 | // clang-format off |
334 | | -#define TRACE_REVx $_$Revision: 1734 $_$Date: 2026-02-25 07:39:20 -0600 (Wed, 25 Feb 2026) $ |
| 334 | +#define TRACE_REVx $_$Revision: 1739 $_$Date: 2026-03-17 13:52:01 -0500 (Tue, 17 Mar 2026) $ |
335 | 335 | // Who would ever have an identifier/token that begins with $_$??? |
336 | 336 | #define $_$Revision 0?0 |
337 | 337 | #define $_$Date , |
@@ -2643,7 +2643,7 @@ static void trace_namLvlSet(void) |
2643 | 2643 | || ((sts= sscanf(line, "%s %llx %llx %llx", name, &M, &S, &T)) && sts >= 3) //NOLINT |
2644 | 2644 | || ((sts= sscanf(line, "%[^,],%llx,%llx,%llx", name, &M, &S, &T)) && sts >= 3) //NOLINT |
2645 | 2645 | || ((sts= sscanf(line, "%s %llx", name, &S)) && sts == 2) //NOLINT |
2646 | | - || ((sts= sscanf(line, "%s[^,],%llx", name, &S)) && sts == 2)) //NOLINT |
| 2646 | + || ((sts= sscanf(line, "%[^,],%llx", name, &S)) && sts == 2)) //NOLINT |
2647 | 2647 | // The last case is for when TRACE will remain "inactive" (not tracing to mem and not using lvls from trace file) -- just concerned about slow path |
2648 | 2648 | { |
2649 | 2649 | int32_t tid= (int32_t)trace_name2TID(name); |
|
0 commit comments