mirror of https://github.com/BOINC/boinc.git
69 lines
2.2 KiB
C
69 lines
2.2 KiB
C
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2008 University of California
|
|
//
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License
|
|
// as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
// See the GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
/*
|
|
* mac_backtrace.h
|
|
*
|
|
*/
|
|
|
|
/* This is a rudimentary backtrace generator for boinc project applications.
|
|
*
|
|
* It is adapted from Apple Developer Technical Support Sample Code
|
|
* MoreisBetter / MoreDebugging / MoreBacktraceTest
|
|
* The symbols it displays are not always clean.
|
|
*
|
|
* This code handles Mac OS X 10.3.x through 10.4.2. It may require some
|
|
* adjustment for future OS versions; see the discussion of _sigtramp and
|
|
* PowerPC Signal Stack Frames below.
|
|
*
|
|
* For useful tips on using backtrace information, see Apple Tech Note 2123:
|
|
* http://developer.apple.com/technotes/tn2004/tn2123.html#SECNOSYMBOLS
|
|
*
|
|
* To convert addresses to correct symbols, use the atos command-line tool:
|
|
* atos -o path/to/executable/with/symbols address
|
|
* Note: if address 1a23 is hex, use 0x1a23.
|
|
*
|
|
* To demangle mangled C++ symbols, use the c++filt command-line tool.
|
|
* You may need to prefix C++ symbols with an additonal underscore before
|
|
* passing them to c++filt (so they begin with two underscore characters).
|
|
*
|
|
* Flags in backtrace:
|
|
* F this frame pointer is bad
|
|
* P this PC is bad
|
|
* S this frame is a signal handler
|
|
*
|
|
*/
|
|
|
|
#ifndef _BOINC_BACKTRACE_
|
|
#define _BOINC_BACKTRACE_
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <mach/mach.h>
|
|
|
|
void PrintBacktrace(void);
|
|
void GetNameOfAndPathToThisProcess(char *nameBuf, size_t nameBufLen, char* outbuf, size_t outBufLen);
|
|
char * BT_PersistentFGets(char *buf, size_t buflen, FILE *f);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif // _BOINC_BACKTRACE_
|