OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
mumps_thread.c File Reference
#include "mumps_common.h"
#include <unistd.h>

Go to the source code of this file.

Macros

#define USLEEP   F_SYMBOL(usleep,USLEEP)

Functions

void MUMPS_CALL USLEEP (MUMPS_INT *time)

Macro Definition Documentation

◆ USLEEP

#define USLEEP   F_SYMBOL(usleep,USLEEP)

Definition at line 16 of file mumps_thread.c.

Function Documentation

◆ USLEEP()

void MUMPS_CALL USLEEP ( MUMPS_INT * time)

Definition at line 28 of file mumps_thread.c.

29 {
30 /* int* time : in microseconds */
31 /* usleep: microseconds */
32 usleep((unsigned int)*time);
33 }