From c679f62753fd95a840b561f316ef9382096ab6e8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Mon, 6 Jul 1998 23:59:27 +0200
Subject: [PATCH] Added some debug for readdir_r.

Rev: src/modules/files/efuns.c:1.57
---
 src/modules/files/efuns.c | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/src/modules/files/efuns.c b/src/modules/files/efuns.c
index 8414058454..42626cd0a2 100644
--- a/src/modules/files/efuns.c
+++ b/src/modules/files/efuns.c
@@ -22,7 +22,7 @@
 #include "file_machine.h"
 #include "file.h"
 
-RCSID("$Id: efuns.c,v 1.56 1998/07/02 21:02:31 grubba Exp $");
+RCSID("$Id: efuns.c,v 1.57 1998/07/06 21:59:27 grubba Exp $");
 
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
@@ -73,6 +73,7 @@ RCSID("$Id: efuns.c,v 1.56 1998/07/02 21:02:31 grubba Exp $");
 #endif
 
 /* #define DEBUG_FILE */
+/* #define READDIR_DEBUG */
 
 struct array *encode_stat(struct stat *s)
 {
@@ -484,9 +485,19 @@ void f_get_dir(INT32 args)
 	d = NULL;
 	errno = 0;
 	if ((err = readdir_r(dir, tmp, &d)) || !d) {
+#ifdef READDIR_DEBUG
+	  fprintf(stderr, "POSIX readdir_r(\"%s\") => err %d\n",
+		  path, err);
+	  fprintf(stderr, "POSIX readdir_r(), d= 0x%08x\n",
+		  (unsigned int)d);
+#endif /* READDIR_DEBUG */
 	  if (err == -1) {
 	    err = errno;
 	  }
+#ifdef READDIR_DEBUG
+	  fprintf(stderr, "POSIX readdir_r(\"%s\") => errno %d\n",
+		  path, err);
+#endif /* READDIR_DEBUG */
 	  /* Solaris readdir_r seems to set errno to ENOENT sometimes.
 	   */
 	  if (err == ENOENT) {
@@ -494,6 +505,10 @@ void f_get_dir(INT32 args)
 	  }
 	  break;
 	}
+#ifdef READDIR_DEBUG
+	fprintf(stderr, "POSIX readdir_r(\"%s\") => \"%s\"\n",
+		path, d->d_name);
+#endif /* READDIR_DEBUG */
 #else
 #error Unknown readdir_r variant
 #endif
-- 
GitLab