Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 2 Apr 1998 17:59:27 +0000 (17:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 2 Apr 1998 17:59:27 +0000 (17:59 +0000)
* sysdeps/unix/sysv/linux/syscalls.list: Add s_getcwd entry.

ChangeLog
sysdeps/unix/sysv/linux/getcwd.c
sysdeps/unix/sysv/linux/syscalls.list

index 9eec8e8..f98779b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1998-04-02  Ulrich Drepper  <drepper@cygnus.com>
 
+       * sysdeps/unix/sysv/linux/syscalls.list: Add s_getcwd entry.
+
        * stdlib/isomac.c: Use -isystem instead of -I for system include
        dir.
 
index 0bf9a9f..fb483ac 100644 (file)
@@ -37,7 +37,7 @@ static char *generic_getcwd (char *buf, size_t size) internal_function;
    directory: a syscall.  We've got to be careful that even when
    compiling under 2.1.92+ the libc still runs under older kernels. */
 extern int __syscall_getcwd (char *buf, unsigned long size);
-static no_syscall_getcwd;
+static int no_syscall_getcwd;
 static int no_new_dcache = 1;
 #else
 static int no_new_dcache;
@@ -52,7 +52,7 @@ __getcwd (char *buf, size_t size)
   char *result;
   size_t alloc_size = size;
 
-  if (no_new_dcache)
+  if (no_syscall_getcwd && no_new_dcache)
     return generic_getcwd (buf, size);
 
   if (size == 0)
@@ -82,7 +82,6 @@ __getcwd (char *buf, size_t size)
     {
       int retval;
 
-      do
       retval = __syscall_getcwd (path, alloc_size);
       if (retval >= 0)
        {
index f55c3f6..3fcb9a6 100644 (file)
@@ -40,6 +40,7 @@ rt_sigprocmask        -       rt_sigprocmask  4       __syscall_rt_sigprocmask
 rt_sigqueueinfo        -       rt_sigqueueinfo 3       __syscall_rt_sigqueueinfo
 rt_sigsuspend  -       rt_sigsuspend   2       __syscall_rt_sigsuspend
 rt_sigtimedwait        -       rt_sigtimedwait 4       __syscall_rt_sigtimedwait
+s_getcwd       EXTRA   getcwd          2       __syscall_getcwd
 s_getdents     EXTRA   getdents        3       __getdents
 s_getpriority  getpriority getpriority 2       __syscall_getpriority
 s_getresgid    getresgid getresgid     3       __syscall_getresgid