blob: 7964411598d4a8b8668f6439e49a76b7f9d74bf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//===-- Implementation of dl_iterate_phdr --------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------------------------------------------------===//
#include "dl_iterate_phdr.h"
#include "src/__support/common.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(int, dl_iterate_phdr,
(__dl_iterate_phdr_callback_t callback, void *arg)) {
// FIXME: For pure static linking, this can report just the executable with
// info from __ehdr_start or AT_{PHDR,PHNUM} decoding, and its PT_TLS; and it
// could report the vDSO.
(void)callback, (void)arg;
return 0;
}
} // namespace LIBC_NAMESPACE_DECL
|