]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - tools/build/feature/test-dwarf_getlocations.c
ipv4: convert dst_metrics.refcnt from atomic_t to refcount_t
[mirror_ubuntu-artful-kernel.git] / tools / build / feature / test-dwarf_getlocations.c
1 #include <stdlib.h>
2 #include <elfutils/libdw.h>
3
4 int main(void)
5 {
6 Dwarf_Addr base, start, end;
7 Dwarf_Attribute attr;
8 Dwarf_Op *op;
9 size_t nops;
10 ptrdiff_t offset = 0;
11 return (int)dwarf_getlocations(&attr, offset, &base, &start, &end, &op, &nops);
12 }