]> git.saurik.com Git - apt.git/commitdiff
Fixed WaitFD
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:52:53 +0000 (16:52 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:52:53 +0000 (16:52 +0000)
Author: jgg
Date: 1999-02-16 04:18:35 GMT
Fixed WaitFD

apt-pkg/contrib/fileutl.cc
apt-pkg/contrib/fileutl.h

index 5b7c76496461d1ac54b3c2d0c7b6a6348e4c752e..b6a64926d7473693a28a13171ff48d88949e3749 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: fileutl.cc,v 1.20 1999/02/12 20:47:41 doogie Exp $
+// $Id: fileutl.cc,v 1.21 1999/02/16 04:18:35 jgg Exp $
 /* ######################################################################
    
    File Utilities
@@ -165,7 +165,7 @@ void SetNonBlock(int Fd,bool Block)
 // ---------------------------------------------------------------------
 /* This waits for a FD to become readable using select. It is usefull for
    applications making use of non-blocking sockets. */
-bool WaitFd(int Fd, bool write = false, long timeout = 0)
+bool WaitFd(int Fd,bool write,unsigned long timeout)
 {
    fd_set Set;
    struct timeval tv;
@@ -173,13 +173,17 @@ bool WaitFd(int Fd, bool write = false, long timeout = 0)
    FD_SET(Fd,&Set);
    tv.tv_sec = timeout / 1000000;
    tv.tv_usec = timeout % 1000000;
-   if(write) {
-      if (select(Fd+1,&Set,0,0,&tv) <= 0)
+   if (write == true) 
+   {
+      if (select(Fd+1,0,&Set,0,(timeout != 0?&tv:0)) <= 0)
          return false;
-   } else {
-      if (select(Fd+1,0,&Set,0,&tv) <= 0)
+   } 
+   else 
+   {
+      if (select(Fd+1,&Set,0,0,(timeout != 0?&tv:0)) <= 0)
          return false;
    }
+   
    return true;
 }
                                                                        /*}}}*/
index faec10c2d4d61ac6bbd4c80c7c7dae21b0cda1b5..7bb3fc4461fe5b6fcd20d9dfe001badb466a4295 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: fileutl.h,v 1.13 1999/02/12 20:47:41 doogie Exp $
+// $Id: fileutl.h,v 1.14 1999/02/16 04:18:35 jgg Exp $
 /* ######################################################################
    
    File Utilities
@@ -66,7 +66,7 @@ bool FileExists(string File);
 string SafeGetCWD();
 void SetCloseExec(int Fd,bool Close);
 void SetNonBlock(int Fd,bool Block);
-bool WaitFd(int Fd, bool write = false, long timeout = 0);
+bool WaitFd(int Fd,bool write = false,unsigned long timeout = 0);
 
 // File string manipulators
 string flNotDir(string File);