Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/./include/execinfo.h
Real path: /usr/include/execinfo.h
Zurück
/* * Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved. */ #ifndef _EXECINFO_H #define _EXECINFO_H /* * These functions provide glibc-compatible backtrace functionality. * Improved functionality is available using Solaris-specific APIs; * see man page for walkcontext(), printstack() and addtosymstr(). */ #ifdef __cplusplus extern "C" { #endif extern int backtrace(void **, int); extern char **backtrace_symbols(void *const *, int); extern void backtrace_symbols_fd(void *const *, int, int); #ifdef __cplusplus } #endif #endif /* _EXECINFO_H */