From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Fri, 8 Nov 1996 11:15:08 +0100 From: Nigel Roles ngr@symbionics.co.uk Subject: XaoS - fast realtime fractal zoomer Topicbox-Message-UUID: 513dcb3e-eac8-11e9-9e20-41e7f4b1d025 Message-ID: <19961108101508.DIhHn4q6Qd5uDkZ2oYHnPiVY05j5BohXHRJlXoA3anI@z> > I did port of my XaoS to plan9. I have just small problem with timmings. > Is there any functions that returns time in miliseconds or such like > gettimeofday? > int msec(void) { static int fd; char buf[20]; /* ish */ if (fd < 0) fd = open("/dev/msec", OREAD); read(fd, buf, 20); Nigel Roles