This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Beta 18 breaks gettimeofday


I have just upgraded to beta 18 and was rebuilding an application and had
some troubles.. after tracking things down it seems to be a problem with
the gettimeofday() call..  sample code follows:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <errno.h>

int main()
{
  struct timeval *tvp;
  struct timeval  tv;

  tvp = &tv;

  if(gettimeofday(tvp, NULL) != 0){
    printf("\n failed \n error was : %s\n", strerror(errno));
  } else {
    printf("\n worked \n tv_sec is : %i\n tv_usec is : %i", 
           tv.tv_sec, tv.tv_usec);
  }
  return(0);
}

this code works on freebsd, and other gettimeofday calls used to work on B17.1

any ideas?

		thanks
			Jonathan

-=-=-=-=-=-=-=-
Jonathan Wilkins      |  Futuaris   | If only they had used their
jwilkins@secnet.com   | Non Irresus | terminals for niceness instead
http://www.secnet.com |  Ridebus    | of evil ...-Maxwell Smart
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]