Matthew Fioravante
2012-Sep-17 22:03 UTC
[PATCH mini-os enhancements for vtpm 6/8] add select() to sys/time.h
This patch adds the select function to sys/time.h when HAVE_LIBC is
defined, which is according to standard. (see the select() manpage)
Signed of by: Matthew Fioravante matthew.fioravante@jhuapl.edu
diff --git a/extras/mini-os/include/sys/time.h
b/extras/mini-os/include/sys/time.h
--- a/extras/mini-os/include/sys/time.h
+++ b/extras/mini-os/include/sys/time.h
@@ -22,6 +22,7 @@
#ifdef HAVE_LIBC
#include_next <sys/time.h>
+
#else
struct timespec {
time_t tv_sec;
@@ -37,6 +38,10 @@ struct timeval {
};
int gettimeofday(struct timeval *tv, void *tz);
+
+#endif
+#ifdef HAVE_LIBC
+#include <sys/select.h>
#endif
#endif /* _MINIOS_SYS_TIME_H_ */
--
1.7.4.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
Samuel Thibault
2012-Sep-17 22:18 UTC
Re: [PATCH mini-os enhancements for vtpm 6/8] add select() to sys/time.h
Matthew Fioravante, le Mon 17 Sep 2012 18:03:08 -0400, a écrit :> This patch adds the select function to sys/time.h when HAVE_LIBC is > defined, which is according to standard. (see the select() manpage) > > > Signed of by: Matthew Fioravante matthew.fioravante@jhuapl.eduAcked-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Samuel