| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Adapted from arm64 version. |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * GNU linker script for the VDSO library. |
|---|
| 5 | 6 | * |
|---|
| 6 | 7 | * Copyright (C) 2012 ARM Limited |
|---|
| 7 | | - * |
|---|
| 8 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 9 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 10 | | - * published by the Free Software Foundation. |
|---|
| 11 | | - * |
|---|
| 12 | | - * This program is distributed in the hope that it will be useful, |
|---|
| 13 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 14 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 15 | | - * GNU General Public License for more details. |
|---|
| 16 | | - * |
|---|
| 17 | | - * You should have received a copy of the GNU General Public License |
|---|
| 18 | | - * along with this program. If not, see <http://www.gnu.org/licenses/>. |
|---|
| 19 | 8 | * |
|---|
| 20 | 9 | * Author: Will Deacon <will.deacon@arm.com> |
|---|
| 21 | 10 | * Heavily based on the vDSO linker scripts for other archs. |
|---|
| .. | .. |
|---|
| 82 | 71 | global: |
|---|
| 83 | 72 | __vdso_clock_gettime; |
|---|
| 84 | 73 | __vdso_gettimeofday; |
|---|
| 74 | + __vdso_clock_getres; |
|---|
| 75 | + __vdso_clock_gettime64; |
|---|
| 85 | 76 | local: *; |
|---|
| 86 | 77 | }; |
|---|
| 87 | 78 | } |
|---|