Hacker News new | ask | show | jobs
by MayeulC 3393 days ago
Wasn't a workaround posted for this some time ago, that requires setting the TZ environment variable?

https://news.ycombinator.com/item?id=13697555

It seems very closely related, unless I am mistaken.

1 comments

You are not mistaken in that the topics are (somewhat) related, they all have to do with time. But setting the TZ environment variable doesn't mean your programs don't execute the syscalls discussed in this article.

This is about the speed of execution of the mentioned syscalls, which will be called regardless of the TZ environment variable, and how vDSO changes that. However, by setting the TZ environment variable you can avoid an additional call to stat to as it tries to determine if /etc/localtime exists.