No bug: Fix comment in TimeStamp_posix.cpp. DONTBUILD

This commit is contained in:
Justin Lebar 2012-10-20 11:12:20 -04:00
Родитель 9af14c557f
Коммит b09af6f193
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -38,7 +38,7 @@ static uint64_t
ClockTimeNs()
{
struct timespec ts;
// this can't fail: we know &ts is valid, and TimeStamp::Init()
// this can't fail: we know &ts is valid, and TimeStamp::Startup()
// checks that CLOCK_MONOTONIC is supported (and aborts if not)
clock_gettime(CLOCK_MONOTONIC, &ts);