Fix IO memory access .. SB128 driver makes noises in VMWare - CMI is untested (Curren...
[AROS.git] / arch / all-mingw32 / bsdsocket / waitselect.c
blobd7ad90b807858c76bcfa1630a131b33e71d7e0c9
1 /*
2 Copyright © 2000-2010, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 #include <devices/timer.h>
11 #include "bsdsocket_intern.h"
13 /*****************************************************************************
15 NAME */
17 AROS_LH6(int, WaitSelect,
19 /* SYNOPSIS */
20 AROS_LHA(int, nfds, D0),
21 AROS_LHA(fd_set *, readfds, A0),
22 AROS_LHA(fd_set *, writefds, A1),
23 AROS_LHA(fd_set *, exceptfds, A2),
24 AROS_LHA(struct timeval *, timeout, A3),
25 AROS_LHA(ULONG *, sigmask, D1),
27 /* LOCATION */
28 struct Library *, SocketBase, 21, BSDSocket)
30 /* FUNCTION
32 INPUTS
34 RESULT
36 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
44 INTERNALS
46 HISTORY
48 *****************************************************************************/
50 AROS_LIBFUNC_INIT
52 aros_print_not_implemented ("WaitSelect");
53 #warning TODO: Write BSDSocket/WaitSelect
55 return 0;
57 AROS_LIBFUNC_EXIT
59 } /* WaitSelect */