Edit

thodg/cgminer/compat.h

Branch :

  • Show log

    Commit

  • Author : Ycros
    Date : 2011-07-13 16:49:44
    Hash : 8ec2dcc9
    Message : Mingw suseconds_t and sigaction fixes. Added typedef for suseconds_t for systems without this defined. Added signal/sigaction from gnulib because mingw is missing these.

  • compat.h
  • #ifndef __COMPAT_H__
    #define __COMPAT_H__
    
    #ifndef __SUSECONDS_T_TYPE
    typedef long suseconds_t;
    #endif
    
    #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;
    
    #endif /* WIN32 */
    
    #endif /* __COMPAT_H__ */