From: jwilkins AT secnet DOT com (Jonathan Wilkins) Subject: Beta 18 breaks gettimeofday 20 May 1997 23:56:08 -0700 Approved: cygnus DOT gnu-win32 AT cygnus DOT com Distribution: cygnus Message-ID: <3.0.32.19970520174814.02732ca8.cygnus.gnu-win32@silence.secnet.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Sender: jwilkins AT silence DOT secnet DOT com X-Mailer: Windows Eudora Pro Version 3.0 (32) Original-To: Geoffrey Noer Original-Cc: gnu-win32 AT cygnus DOT com Original-Sender: owner-gnu-win32 AT cygnus DOT com 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 #include #include #include #include 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 AT secnet DOT 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 AT cygnus DOT com" with one line of text: "help".