mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-23 17:38:54 +02:00
Simplify the loop for the fix below.
Tue Feb 22 18:33:07 2005 Manish Singh <yosh@gimp.org> * glib/gtimer.c (g_usleep): Simplify the loop for the fix below.
This commit is contained in:
committed by
Manish Singh
parent
0e2279a092
commit
ea28f59fc1
@@ -240,18 +240,8 @@ g_usleep (gulong microseconds)
|
||||
struct timespec request, remaining;
|
||||
request.tv_sec = microseconds / G_USEC_PER_SEC;
|
||||
request.tv_nsec = 1000 * (microseconds % G_USEC_PER_SEC);
|
||||
while (1)
|
||||
{
|
||||
if (nanosleep (&request, &remaining) == -1)
|
||||
{
|
||||
if (errno == EINTR)
|
||||
request = remaining;
|
||||
else
|
||||
break;
|
||||
}
|
||||
else
|
||||
break;
|
||||
}
|
||||
while (nanosleep (&request, &remaining) == -1 && errno == EINTR)
|
||||
request = remaining;
|
||||
# else /* !HAVE_NANOSLEEP */
|
||||
if (g_thread_supported ())
|
||||
{
|
||||
|
Reference in New Issue
Block a user