
libgomp/ChangeLog: * testsuite/libgomp.fortran/order-reproducible-1.f90: New test based on libgomp.c-c++-common/order-reproducible-1.c. * testsuite/libgomp.fortran/order-reproducible-2.f90: Likewise. * testsuite/libgomp.fortran/my-usleep.c: New test.
9 lines
146 B
C
9 lines
146 B
C
/* Wrapper as usleep takes 'useconds_t', an unsigned integer type, as argument. */
|
|
|
|
#include <unistd.h>
|
|
|
|
void
|
|
my_usleep (int t)
|
|
{
|
|
usleep (t);
|
|
}
|