$NetBSD: patch-ab,v 1.3 2011/05/11 01:27:03 ryoon Exp $
--- zfuncs.cc.orig 2011-05-01 18:44:26.000000000 +0000
+++ zfuncs.cc
@@ -77,6 +77,7 @@ void zappcrash(cchar *pMess, ... )
printf("zappcrash: \n %s \n",message); // output message to stdout
+#ifdef backtrace
nstack = backtrace(stacklist,nstack); // get traceback data
stackents = backtrace_symbols(stacklist,nstack);
@@ -84,12 +85,14 @@ void zappcrash(cchar *pMess, ... )
printf(" %s \n",stackents[ii]);
fid1 = fopen("zappcrash","w"); // text file for backtrace
+#endif
fprintf(fid1,"zappcrash: \n %s \n",message); // output message to text file
cc = readlink("/proc/self/exe",progexe,300); // get own program path
progexe[cc] = 0;
for (ii = 0; ii < nstack; ii++) // output backtrace to text file
{
pfunc = 0;
@@ -109,6 +112,7 @@ void zappcrash(cchar *pMess, ... )
fprintf(fid1," %s %s \n",stackents[ii],pfunc); // write to text file
}
fclose(fid1);
@@ -768,6 +772,7 @@ int parsefile(cchar *ppath, char **pdirk
***************************************************************************/
+#ifdef zmondirk
int zmondirk(cchar *action, cchar *dirk, char **file)
struct inotify_event {
@@ -860,7 +865,7 @@ int zmondirk(cchar *action, cchar *dirk,
zappcrash("zmondirk() call error");
return -1;
-
/**************************************************************************