Changeset 1170
- Timestamp:
- Feb 4, 2004, 11:35:57 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/sys/libclog.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1169 r1170 237 237 return; 238 238 239 cch = snprintf(pszMsg, CCHTMPMSGBUFFER, "%08x %02x Msg %s (%2d ms): ", uTS, getTid(), pszFunction, uTS - uEnterTS); 239 if (uEnterTS != ~0) 240 cch = snprintf(pszMsg, CCHTMPMSGBUFFER, "%08x %02x Msg %s (%2d ms): ", uTS, getTid(), pszFunction, uTS - uEnterTS); 241 else 242 cch = snprintf(pszMsg, CCHTMPMSGBUFFER, "%08x %02x Msg %s: ", uTS, getTid(), pszFunction); 240 243 va_start(args, pszFormat); 241 244 cch += vsnprintf(pszMsg + cch, CCHTMPMSGBUFFER - cch, pszFormat, args); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.