]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: remove unused __vdso_time_sym
authorTobias Klauser <tklauser@distanz.ch>
Fri, 2 Mar 2018 16:19:46 +0000 (17:19 +0100)
committerTobias Klauser <tobias.klauser@gmail.com>
Sat, 3 Mar 2018 12:11:38 +0000 (12:11 +0000)
It's unused since https://golang.org/cl/99320043

Change-Id: I74d69ff894aa2fb556f1c2083406c118c559d91b
Reviewed-on: https://go-review.googlesource.com/98195
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/runtime/vdso_linux_amd64.go

index f971ba672b80d9ece977f0a0db2af3d9005b4c53..892b49982479840a4335524e99844df78ed414dd 100644 (file)
@@ -11,14 +11,12 @@ const (
 )
 
 var sym_keys = []symbol_key{
-       {"__vdso_time", 0xa33c485, 0x821e8e0d, &__vdso_time_sym},
        {"__vdso_gettimeofday", 0x315ca59, 0xb01bca00, &__vdso_gettimeofday_sym},
        {"__vdso_clock_gettime", 0xd35ec75, 0x6e43a318, &__vdso_clock_gettime_sym},
 }
 
 // initialize with vsyscall fallbacks
 var (
-       __vdso_time_sym          uintptr = 0xffffffffff600400
        __vdso_gettimeofday_sym  uintptr = 0xffffffffff600000
        __vdso_clock_gettime_sym uintptr = 0
 )