Commit 182517e6 authored by Andrew Tridgell's avatar Andrew Tridgell

removed u_sleep() as it is no longer used anywhere

parent 554e0a8d
......@@ -367,17 +367,6 @@ int robust_rename(char *from, char *to)
return -1;
return do_rename(from, to);
#endif
}
/* sleep for a while via select */
void u_sleep(int usec)
{
struct timeval tv;
tv.tv_sec = 0;
tv.tv_usec = usec;
select(0, NULL, NULL, NULL, &tv);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment