Add "make pdf" and "make install-pdf", from Brooks Moses
[deliverable/binutils-gdb.git] / gdb / posix-hdep.c
index ca405f985f585a4966a092b4c2e869b2e487663a..86937e8769fa5ac3178bd1faa9918fe6c7e71ed4 100644 (file)
@@ -1,7 +1,6 @@
 /* Host support routines for MinGW, for GDB, the GNU debugger.
 
-   Copyright (C) 2006
-   Free Software Foundation, Inc.
+   Copyright (C) 2006, 2007 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -24,6 +23,8 @@
 
 #include "gdb_string.h"
 
+#include "gdb_select.h"
+
 /* The strerror() function can return NULL for errno values that are
    out of range.  Provide a "safe" version that always returns a
    printable string. */
@@ -43,3 +44,11 @@ safe_strerror (int errnum)
   return (msg);
 }
 
+/* Wrapper for select.  Nothing special needed on POSIX platforms.  */
+
+int
+gdb_select (int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
+           struct timeval *timeout)
+{
+  return select (n, readfds, writefds, exceptfds, timeout);
+}
This page took 0.02365 seconds and 4 git commands to generate.