Disable Linux vDSO support for now

It's been encountering some strange errors that are difficult to
reproduce.
This commit is contained in:
Justine Tunney 2022-05-17 12:51:25 -07:00
parent b2c6ec6eab
commit c6bbca55e9

View file

@ -80,6 +80,8 @@ noinstrument int clock_gettime(int clockid, struct timespec *ts) {
* Returns fast system clock_gettime() if it exists.
*/
void *__get_clock_gettime(void) {
// TODO(jart): Re-enable this.
return 0;
void *vdso;
static bool once;
static void *result;