- fix build issues under win32 (mingw)

git-svn-id: svn://svn.berlios.de/openocd/trunk@902 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
ntfreak 2008-08-08 18:15:55 +00:00
parent dc63c051a8
commit 53e1f9cd0f
1 changed files with 6 additions and 4 deletions

View File

@ -62,9 +62,11 @@
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/select.h>
#include <errno.h>
extern int errno;
#include "replacements.h"
extern int errno;
/* --- */
/* File event structure */
@ -269,7 +271,7 @@ int Jim_ProcessEvents(Jim_Interp *interp, int flags)
/* Check file events */
while (fe != NULL) {
int fd = fileno(fe->handle);
int fd = fileno((FILE*)fe->handle);
if (fe->mask & JIM_EVENT_READABLE)
FD_SET(fd, &rfds);
@ -320,7 +322,7 @@ int Jim_ProcessEvents(Jim_Interp *interp, int flags)
} else if (retval > 0) {
fe = eventLoop->fileEventHead;
while(fe != NULL) {
int fd = fileno(fe->handle);
int fd = fileno((FILE*)fe->handle);
// fprintf(stderr,"fd: %d mask: %02x \n",fd,fe->mask);