X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=libjava%2Finclude%2Fname-finder.h;fp=libjava%2Finclude%2Fname-finder.h;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=805725b4b6968fbe121d0b6f26939fbe5a75b397;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/libjava/include/name-finder.h b/libjava/include/name-finder.h deleted file mode 100644 index 805725b4..00000000 --- a/libjava/include/name-finder.h +++ /dev/null @@ -1,91 +0,0 @@ -// name-finder.h - Convert addresses to names - -/* Copyright (C) 2000, 2002 Free Software Foundation, Inc - - This file is part of libgcj. - -This software is copyrighted work licensed under the terms of the -Libgcj License. Please consult the file "LIBGCJ_LICENSE" for -details. */ - -/** - * @author Andrew Haley - * @date Jan 6 2000 - */ - -#include -#include - -#include - -#ifdef HAVE_SYS_WAIT_H -#include -#endif - -#include -#include - -#ifdef HAVE_UNISTD_H -#include -#endif - -/* _Jv_name_finder is a class wrapper around a mechanism that can - convert addresses of methods to their names and the names of files - in which they appear. */ - -class _Jv_name_finder -{ -public: - _Jv_name_finder (char *executable); - ~_Jv_name_finder () - { -#if defined (HAVE_PIPE) && defined (HAVE_FORK) - myclose (f_pipe[0]); - myclose (f_pipe[1]); - myclose (b_pipe[0]); - myclose (b_pipe[1]); - if (b_pipe_fd != NULL) - fclose (b_pipe_fd); - - if (pid >= 0) - { - int wstat; - // We don't care about errors here. - waitpid (pid, &wstat, 0); - } -#endif - } - -/* Given a pointer to a function or method, try to convert it into a - name and the appropriate line and source file. The caller passes - the code pointer in p. - - Returns false if the lookup fails. Even if this happens, the field - hex will have been correctly filled in with the pointer. - - The other fields are method_name and file_name, which lookup will - attempt to fill appropriately. If the lookup has failed, these - fields contain garbage.*/ - bool lookup (void *p); - - char method_name[1024]; - char file_name[1024]; - char hex[sizeof (void *) * 2 + 5]; - -private: - void toHex (void *p); -#if defined (HAVE_PIPE) && defined (HAVE_FORK) - pid_t pid; - int f_pipe[2], b_pipe[2]; - FILE *b_pipe_fd; - int error; - - // Close a descriptor only if it has not been closed. - void myclose (int fd) - { - if (fd != -1) - close (fd); - } - -#endif -};