From 4a1a29aa746f05c02c7eea28b1285e5d55557ff5 Mon Sep 17 00:00:00 2001 From: Rutger Hofman Date: Mon, 18 May 2009 11:22:30 +0000 Subject: [PATCH] Forgot to add usleep.c git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1602 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- urjtag/src/lib/usleep.c | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 urjtag/src/lib/usleep.c diff --git a/urjtag/src/lib/usleep.c b/urjtag/src/lib/usleep.c new file mode 100644 index 00000000..f632b9ca --- /dev/null +++ b/urjtag/src/lib/usleep.c @@ -0,0 +1,45 @@ +/* + * $Id: usleep.c 1519 2009-04-22 23:12:44Z rfhh $ + * + * Copyright (C) 2009, Rutger Hofman, VU Amsterdam + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + * + */ +#include "sysdep.h" + +#ifndef HAVE_USLEEP + +#ifndef HAVE_NANOSLEEP +# error Need usleep or nanosleep +#endif + +#include + +#define MICRO 1000000L +#define NANO 1000000000L + +int usleep (long unsigned usec) +{ + struct timespec req; + + req.tv_sec = usec / MICRO; + req.tv_nsec = (usec % MICRO) * (NANO / MICRO); + + return nanosleep (&req, NULL); +} + +#endif