123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /* $Id$
- *
- * sd_xplatform.h
- *
- * See the COPYING file for the terms of usage and distribution.
- */
- #ifndef __sd_xplatform_h
- #define __sd_xplatform_h
- #ifndef _WIN32
- #include <unistd.h>
- #include <sys/time.h>
- #include <sys/stat.h>
- #else
- #include <time.h>
- #include <io.h> /* needed for _access */
- #define WIN32_LEAN_AND_MEAN
- #include <windows.h>
- #include <winsock2.h>
- #include <process.h>
- #endif
- #ifdef HAVE_STDINT_H
- # include <stdint.h>
- #define XP_UINT64 uint64_t
- #define XP_INT64 int64_t
- #else
- #ifndef _WIN32
- #define XP_UINT64 unsigned long long
- #define XP_INT64 long long
- #else
- #define XP_UINT64 DWORD64
- #define XP_INT64 __int64
- #endif
- #endif
- #include <log4c/defs.h>
- #include <sd/defs.h>
- /*extern int sd_optind; */
- LOG4C_DATA int sd_optind;
- extern void getopt_reset(void);
- extern int sd_getopt(int argc, char *const *argv, const char *opts);
- #ifdef _WIN32
- #define SD_GETOPT(a,b,c) sd_getopt(a,b,c)
- #define SD_OPTIND sd_optind
- #else
- #define SD_GETOPT(a,b,c) getopt(a,b,c)
- #define SD_OPTIND optind
- #endif
- #ifdef _WIN32
- #define SD_GETTIMEOFDAY(a,b) sd_gettimeofday(a,b)
- extern int sd_gettimeofday(LPFILETIME lpft, void* tzp);
- #else
- #define SD_GETTIMEOFDAY(a,b) gettimeofday(a,b)
- extern int sd_gettimeofday(struct timeval* tp, void* tzp);
- #endif
- #ifdef _WIN32
- #define FILE_SEP "\\"
- #else
- #define FILE_SEP "/"
- #endif
- #ifdef _WIN32
- #define SD_ACCESS_READ(a) _access(a,04)
- #else
- #define SD_ACCESS_READ(a) access(a,R_OK)
- #endif
- int sd_stat_ctime(const char* path, time_t* time);
- #define SD_STAT_CTIME(path, time) sd_stat_ctime(path, time)
- #ifndef _WIN32
- #define DIFF_CMD "/usr/bin/diff -q"
- #else
- #define DIFF_CMD "comp.exe"
- #endif
- #ifdef _WIN32
- #define snprintf _snprintf
- #define vsnprintf _vsnprintf
- #define alloca _alloca
- #define strncasecmp strnicmp
- #define strcasecmp stricmp
- #define YY_NO_UNISTD_H
- #define sleep(x) Sleep(x*1000)
- #endif
- /* Maybe should be using this for to mean
- * MS compiler #if defined(_MSC_VER)
- */
- #ifdef _WIN32
- #define pthread_t HANDLE
- #define pthread_mutex_t HANDLE
- #define pthread_attr_t DWORD
- #define THREAD_FUNCTION DWORD (WINAPI *)(void *)
- /*
- * This one not obvious: you would have naturally thought of mapping to
- * CreateThread()--turns out that to be safe using CRT functions
- * you need to use _begintheadex().
- * cf. http://msdn2.microsoft.com/en-us/library/7t9ha0zh.aspx
- * http://groups.google.com/group/comp.os.ms-windows.programmer.win32/browse_thread/thread/86d8624e7ee38c5d/f947ac76cd10f397?lnk=st&q=when+to+use+_beginthreadex&rnum=1#f947ac76cd10f397
- *
- */
- #define pthread_create(thhandle,attr,thfunc,tharg) \
- (int)((*thhandle=(HANDLE)_beginthreadex(NULL,0,(THREAD_FUNCTION)thfunc,tharg,0,NULL))==NULL)
- #define pthread_join(thread, result) \
- ((WaitForSingleObject((thread),INFINITE)!=WAIT_OBJECT_0) || !CloseHandle(thread))
- #define pthread_exit() _endthreadex(0)
- #define pthread_cancel(thread) TerminateThread(thread,0)
- #define pthread_mutex_init(pobject,pattr) (*pobject=CreateMutex(NULL,FALSE,NULL))
- #define pthread_mutex_lock(pobject) WaitForSingleObject(*pobject,INFINITE)
- #define pthread_mutex_unlock(pobject) ReleaseMutex(*pobject)
- #define pthread_mutex_destroy(pobject) CloseHandle(*pobject)
- #endif
- #ifdef __HP_cc
- #define inline __inline
- #endif
- #endif
|