agent/src/os/bsd/symtab.h
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot-8003348 Cdiff agent/src/os/bsd/symtab.h

agent/src/os/bsd/symtab.h

Print this page
8003348: SA can not read core file on OS X

*** 1,7 **** /* ! * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 25,39 **** #ifndef _SYMTAB_H_ #define _SYMTAB_H_ #include <stdint.h> ! // interface to manage ELF symbol tables struct symtab; ! // build symbol table for a given ELF file descriptor struct symtab* build_symtab(int fd); // destroy the symbol table void destroy_symtab(struct symtab* symtab); --- 25,39 ---- #ifndef _SYMTAB_H_ #define _SYMTAB_H_ #include <stdint.h> ! // interface to manage ELF or MachO symbol tables struct symtab; ! // build symbol table for a given ELF or MachO file escriptor struct symtab* build_symtab(int fd); // destroy the symbol table void destroy_symtab(struct symtab* symtab);
agent/src/os/bsd/symtab.h
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File