Unify on for (;;)
We have both:
while (true) {...}
And:
for (;;) {...}
The latter is more common[1] so unifying on that.
[1]:
$ git grep -l while\ \(true | wc -l
9
$ git grep -l 'for\ (;;)' | wc -l
18
Change-Id: Ic6234faff39d94b2f24c6f98949511cef8db74cc
Perfetto is an open-source project for performance instrumentation and tracing of Linux/Android/Chrome platforms and user-space apps.
See www.perfetto.dev for docs.