File tree Expand file tree Collapse file tree 4 files changed +4
-0
lines changed
libc/src/__support/OSUtil/linux Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 11
11
namespace LIBC_NAMESPACE {
12
12
namespace vdso {
13
13
// translate VDSOSym to symbol names
14
+ // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/arm64/kernel/vdso/vdso.lds.S
14
15
LIBC_INLINE constexpr cpp::string_view symbol_name (VDSOSym sym) {
15
16
switch (sym) {
16
17
case VDSOSym::RTSigReturn:
Original file line number Diff line number Diff line change 11
11
namespace LIBC_NAMESPACE {
12
12
namespace vdso {
13
13
// translate VDSOSym to symbol names
14
+ // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/arm/vdso/vdso.lds.S
14
15
LIBC_INLINE constexpr cpp::string_view symbol_name (VDSOSym sym) {
15
16
switch (sym) {
16
17
case VDSOSym::ClockGetTime:
Original file line number Diff line number Diff line change 11
11
namespace LIBC_NAMESPACE {
12
12
namespace vdso {
13
13
// translate VDSOSym to symbol names
14
+ // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/riscv/kernel/vdso/vdso.lds.S
14
15
LIBC_INLINE constexpr cpp::string_view symbol_name (VDSOSym sym) {
15
16
switch (sym) {
16
17
case VDSOSym::RTSigReturn:
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ namespace vdso {
15
15
// it is suggested that one should use the __vdso_ prefix.
16
16
// Additionally, there is also an __vdso_sgx_enter_enclave, it is for the SGX
17
17
// support, we do not include it here for now.
18
+ // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/x86/entry/vdso/vdso.lds.S
18
19
LIBC_INLINE constexpr cpp::string_view symbol_name (VDSOSym sym) {
19
20
switch (sym) {
20
21
case VDSOSym::ClockGetTime:
You can’t perform that action at this time.
0 commit comments