mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-09 06:18:06 +00:00
34 lines
487 B
C
34 lines
487 B
C
#ifndef __COMPAT_H__
|
|
#define __COMPAT_H__
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
static inline void sleep(int secs)
|
|
{
|
|
Sleep(secs * 1000);
|
|
}
|
|
|
|
enum {
|
|
PRIO_PROCESS = 0,
|
|
};
|
|
|
|
static inline int setpriority(int which, int who, int prio)
|
|
{
|
|
/* FIXME - actually do something */
|
|
return 0;
|
|
}
|
|
|
|
typedef unsigned long int ulong;
|
|
typedef unsigned short int ushort;
|
|
typedef unsigned int uint;
|
|
|
|
#ifndef __SUSECONDS_T_TYPE
|
|
typedef long suseconds_t;
|
|
#endif
|
|
|
|
#endif /* WIN32 */
|
|
|
|
#endif /* __COMPAT_H__ */
|