Bug 745148, part 0: Log the PID with MOZ_IPC_MESSAGE_LOG logging. r=bent

This commit is contained in:
Chris Jones 2012-07-14 14:21:32 -07:00
Родитель 6ad5ac7bec
Коммит 70c6e3bae9
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1772,8 +1772,9 @@ def _generateMessageClass(clsname, msgid, typedefs, prettyName):
StmtExpr(ExprCall(
ExprVar('StringAppendF'),
args=[ ExprAddrOf(msgvar),
ExprLiteral.String('[time:%" PRId64 "]'),
ExprCall(ExprVar('PR_Now')) ])),
ExprLiteral.String('[time:%" PRId64 "][%d]'),
ExprCall(ExprVar('PR_Now')),
ExprCall(ExprVar('base::GetCurrentProcId')) ])),
appendToMsg(pfxvar),
appendToMsg(ExprLiteral.String(clsname +'(')),
Whitespace.NL