|
|
@ -41,8 +41,9 @@ GNU General Public License for more details. |
|
|
|
#define FIONBIO SO_NONBLOCK |
|
|
|
#define FIONBIO SO_NONBLOCK |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
// this is only used to set non-blocking on sockets
|
|
|
|
/* ioctlsocket() is only used to set non-blocking on sockets */ |
|
|
|
static inline int ioctlsocket( int fd, int req, unsigned int *arg ) |
|
|
|
|
|
|
|
|
|
|
|
static inline int ioctl_psvita( int fd, int req, unsigned int *arg ) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if ( req == FIONBIO ) |
|
|
|
if ( req == FIONBIO ) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -51,4 +52,6 @@ static inline int ioctlsocket( int fd, int req, unsigned int *arg ) |
|
|
|
return -ENOSYS; |
|
|
|
return -ENOSYS; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define ioctlsocket ioctl_psvita |
|
|
|
|
|
|
|
|
|
|
|
#endif // NET_PSVITA_H
|
|
|
|
#endif // NET_PSVITA_H
|
|
|
|