summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-11-05 19:21:58 +0000
committerEric Andersen <andersen@codepoet.org>2001-11-05 19:21:58 +0000
commitd06e73283e7082b19872f3a5dbb6280c78efae81 (patch)
treeead852761c8193b0defbb70f7ef0a2cafcf874bd /libc
parentfaf1b16caa590d84c710f2791f8a93a9cc430774 (diff)
Disable fast search by default (doesn't work on coda for example)
Diffstat (limited to 'libc')
-rw-r--r--libc/unistd/getcwd.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libc/unistd/getcwd.c b/libc/unistd/getcwd.c
index ad68ed4a7..b5bfeaae8 100644
--- a/libc/unistd/getcwd.c
+++ b/libc/unistd/getcwd.c
@@ -4,6 +4,9 @@
#include <dirent.h>
#include <string.h>
+/* #undef FAST_DIR_SEARCH_POSSIBLE on Linux */
+
+
/* These functions find the absolute path to the current working directory. */
static char *recurser(); /* Routine to go up tree */
@@ -78,13 +81,17 @@ ino_t this_ino;
char *ptr;
int slen;
+#ifdef FAST_DIR_SEARCH_POSSIBLE
/* The test is for ELKS lib 0.0.9, this should be fixed in the real kernel */
int slow_search = (sizeof(ino_t) != sizeof(d->d_ino));
+#endif
if (stat(path_buf, &st) < 0)
return 0;
+#ifdef FAST_DIR_SEARCH_POSSIBLE
if (this_dev != st.st_dev)
slow_search = 1;
+#endif
slen = strlen(path_buf);
ptr = path_buf + slen - 1;
@@ -103,7 +110,9 @@ ino_t this_ino;
return 0;
while ((d = readdir(dp)) != 0) {
+#ifdef FAST_DIR_SEARCH_POSSIBLE
if (slow_search || this_ino == d->d_ino) {
+#endif
if (slen + strlen(d->d_name) > path_size) {
__set_errno(ERANGE);
return 0;
@@ -115,7 +124,9 @@ ino_t this_ino;
closedir(dp);
return path_buf;
}
+#ifdef FAST_DIR_SEARCH_POSSIBLE
}
+#endif
}
closedir(dp);