2 * Wine porting definitions
4 * Copyright 1996 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WINE_WINE_PORT_H
22 #define __WINE_WINE_PORT_H
24 #ifndef __WINE_CONFIG_H
25 # error You must include config.h to use this header
28 #ifdef __WINE_BASETSD_H
29 # error You must include port.h before all other headers
33 # define _GNU_SOURCE /* for pread/pwrite, isfinite */
37 #include <sys/types.h>
55 /****************************************************************
59 #if !defined(_MSC_VER) && !defined(__int64)
60 # if defined(__x86_64__) || defined(__aarch64__) || defined(_WIN64)
63 # define __int64 long long
77 typedef unsigned int size_t;
82 #ifndef HAVE_FSBLKCNT_T
83 typedef unsigned long fsblkcnt_t
;
85 #ifndef HAVE_FSFILCNT_T
86 typedef unsigned long fsfilcnt_t
;
89 #ifndef HAVE_STRUCT_STATVFS_F_BLOCKS
92 unsigned long f_bsize
;
93 unsigned long f_frsize
;
100 unsigned long f_fsid
;
101 unsigned long f_flag
;
102 unsigned long f_namemax
;
104 #endif /* HAVE_STRUCT_STATVFS_F_BLOCKS */
107 /****************************************************************
114 #define RTLD_LAZY 0x001
115 #define RTLD_NOW 0x002
116 #define RTLD_GLOBAL 0x100
119 #ifdef HAVE_ONE_ARG_MKDIR
120 #define mkdir(path,mode) mkdir(path)
123 #if !defined(HAVE_FTRUNCATE) && defined(HAVE_CHSIZE)
124 #define ftruncate chsize
127 #if !defined(HAVE_POPEN) && defined(HAVE__POPEN)
131 #if !defined(HAVE_PCLOSE) && defined(HAVE__PCLOSE)
132 #define pclose _pclose
135 #if !defined(HAVE_STRDUP) && defined(HAVE__STRDUP)
136 #define strdup _strdup
139 #if !defined(HAVE_SNPRINTF) && defined(HAVE__SNPRINTF)
140 #define snprintf _snprintf
143 #if !defined(HAVE_VSNPRINTF) && defined(HAVE__VSNPRINTF)
144 #define vsnprintf _vsnprintf
147 #if !defined(HAVE_STRTOLL) && defined(HAVE__STRTOI64)
148 #define strtoll _strtoi64
151 #if !defined(HAVE_STRTOULL) && defined(HAVE__STRTOUI64)
152 #define strtoull _strtoui64
156 # define S_ISLNK(mod) (0)
160 # define S_ISSOCK(mod) (0)
164 # define S_ISDIR(mod) (((mod) & _S_IFMT) == _S_IFDIR)
168 # define S_ISCHR(mod) (((mod) & _S_IFMT) == _S_IFCHR)
172 # define S_ISFIFO(mod) (((mod) & _S_IFMT) == _S_IFIFO)
176 # define S_ISREG(mod) (((mod) & _S_IFMT) == _S_IFREG)
179 /* So we open files in 64 bit access mode on Linux */
181 # define O_LARGEFILE 0
185 # define O_NONBLOCK 0
193 /****************************************************************
198 #define M_PI 3.14159265358979323846
202 #define M_PI_2 1.570796326794896619
206 static inline float __port_infinity(void)
208 static const unsigned __inf_bytes
= 0x7f800000;
209 return *(const float *)&__inf_bytes
;
211 #define INFINITY __port_infinity()
215 static inline float __port_nan(void)
217 static const unsigned __nan_bytes
= 0x7fc00000;
218 return *(const float *)&__nan_bytes
;
220 #define NAN __port_nan()
224 /****************************************************************
225 * Function definitions (only when using libwine_port)
228 #ifndef NO_LIBWINE_PORT
230 #ifndef HAVE_FSTATVFS
231 int fstatvfs( int fd
, struct statvfs
*buf
);
234 #ifndef HAVE_GETOPT_LONG_ONLY
241 #ifndef HAVE_STRUCT_OPTION_NAME
251 extern int getopt_long (int ___argc
, char *const *___argv
,
252 const char *__shortopts
,
253 const struct option
*__longopts
, int *__longind
);
254 extern int getopt_long_only (int ___argc
, char *const *___argv
,
255 const char *__shortopts
,
256 const struct option
*__longopts
, int *__longind
);
257 #endif /* HAVE_GETOPT_LONG_ONLY */
263 #ifndef HAVE_ISFINITE
264 int isfinite(double x
);
276 int lstat(const char *file_name
, struct stat
*buf
);
277 #endif /* HAVE_LSTAT */
280 void *memmove(void *dest
, const void *src
, size_t len
);
281 #endif /* !defined(HAVE_MEMMOVE) */
295 #define POLLNVAL 0x20
296 int poll( struct pollfd
*fds
, unsigned int count
, int timeout
);
297 #endif /* HAVE_POLL */
300 ssize_t
pread( int fd
, void *buf
, size_t count
, off_t offset
);
301 #endif /* HAVE_PREAD */
304 ssize_t
pwrite( int fd
, const void *buf
, size_t count
, off_t offset
);
305 #endif /* HAVE_PWRITE */
307 #ifndef HAVE_READLINK
308 int readlink( const char *path
, char *buf
, size_t size
);
309 #endif /* HAVE_READLINK */
312 int statvfs( const char *path
, struct statvfs
*buf
);
315 #ifndef HAVE_STRNCASECMP
316 # ifndef HAVE__STRNICMP
317 int strncasecmp(const char *str1
, const char *str2
, size_t n
);
319 # define strncasecmp _strnicmp
321 #endif /* !defined(HAVE_STRNCASECMP) */
323 #ifndef HAVE_STRERROR
324 const char *strerror(int err
);
325 #endif /* !defined(HAVE_STRERROR) */
327 #ifndef HAVE_STRCASECMP
328 # ifndef HAVE__STRICMP
329 int strcasecmp(const char *str1
, const char *str2
);
331 # define strcasecmp _stricmp
333 #endif /* !defined(HAVE_STRCASECMP) */
336 int symlink(const char *from
, const char *to
);
340 int usleep (unsigned int useconds
);
341 #endif /* !defined(HAVE_USLEEP) */
344 static inline void *memcpy_unaligned( void *dst
, const void *src
, size_t size
)
346 return memcpy( dst
, src
, size
);
349 extern void *memcpy_unaligned( void *dst
, const void *src
, size_t size
);
350 #endif /* __i386__ */
352 extern int mkstemps(char *template, int suffix_len
);
354 /* Process creation flags */
358 # define _P_OVERLAY 2
359 # define _P_NOWAITO 3
362 #ifndef HAVE__SPAWNVP
363 extern int _spawnvp(int mode
, const char *cmdname
, const char * const argv
[]);
366 /* Interlocked functions */
368 #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
370 static inline int interlocked_cmpxchg( int *dest
, int xchg
, int compare
)
373 __asm__
__volatile__( "lock; cmpxchgl %2,(%1)"
374 : "=a" (ret
) : "r" (dest
), "r" (xchg
), "0" (compare
) : "memory" );
378 static inline void *interlocked_cmpxchg_ptr( void **dest
, void *xchg
, void *compare
)
382 __asm__
__volatile__( "lock; cmpxchgq %2,(%1)"
383 : "=a" (ret
) : "r" (dest
), "r" (xchg
), "0" (compare
) : "memory" );
385 __asm__
__volatile__( "lock; cmpxchgl %2,(%1)"
386 : "=a" (ret
) : "r" (dest
), "r" (xchg
), "0" (compare
) : "memory" );
391 static inline int interlocked_xchg( int *dest
, int val
)
394 __asm__
__volatile__( "lock; xchgl %0,(%1)"
395 : "=r" (ret
) : "r" (dest
), "0" (val
) : "memory" );
399 static inline void *interlocked_xchg_ptr( void **dest
, void *val
)
403 __asm__
__volatile__( "lock; xchgq %0,(%1)"
404 : "=r" (ret
) :"r" (dest
), "0" (val
) : "memory" );
406 __asm__
__volatile__( "lock; xchgl %0,(%1)"
407 : "=r" (ret
) : "r" (dest
), "0" (val
) : "memory" );
412 static inline int interlocked_xchg_add( int *dest
, int incr
)
415 __asm__
__volatile__( "lock; xaddl %0,(%1)"
416 : "=r" (ret
) : "r" (dest
), "0" (incr
) : "memory" );
421 static inline unsigned char interlocked_cmpxchg128( __int64
*dest
, __int64 xchg_high
,
422 __int64 xchg_low
, __int64
*compare
)
425 __asm__
__volatile__( "lock cmpxchg16b %0; setz %b2"
426 : "=m" (dest
[0]), "=m" (dest
[1]), "=r" (ret
),
427 "=a" (compare
[0]), "=d" (compare
[1])
428 : "m" (dest
[0]), "m" (dest
[1]), "3" (compare
[0]), "4" (compare
[1]),
429 "c" (xchg_high
), "b" (xchg_low
) );
436 #ifdef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4
437 static inline int interlocked_cmpxchg( int *dest
, int xchg
, int compare
)
439 return __sync_val_compare_and_swap( dest
, compare
, xchg
);
442 static inline int interlocked_xchg_add( int *dest
, int incr
)
444 return __sync_fetch_and_add( dest
, incr
);
447 static inline int interlocked_xchg( int *dest
, int val
)
450 do ret
= *dest
; while (!__sync_bool_compare_and_swap( dest
, ret
, val
));
454 extern int interlocked_cmpxchg( int *dest
, int xchg
, int compare
);
455 extern int interlocked_xchg_add( int *dest
, int incr
);
456 extern int interlocked_xchg( int *dest
, int val
);
459 #if (defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4) && __SIZEOF_POINTER__ == 4) \
460 || (defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8) && __SIZEOF_POINTER__ == 8)
461 static inline void *interlocked_cmpxchg_ptr( void **dest
, void *xchg
, void *compare
)
463 return __sync_val_compare_and_swap( dest
, compare
, xchg
);
466 static inline void *interlocked_xchg_ptr( void **dest
, void *val
)
469 do ret
= *dest
; while (!__sync_bool_compare_and_swap( dest
, ret
, val
));
473 extern void *interlocked_cmpxchg_ptr( void **dest
, void *xchg
, void *compare
);
474 extern void *interlocked_xchg_ptr( void **dest
, void *val
);
477 #if defined(__x86_64__) || defined(__aarch64__) || defined(_WIN64)
478 extern unsigned char interlocked_cmpxchg128( __int64
*dest
, __int64 xchg_high
,
479 __int64 xchg_low
, __int64
*compare
);
482 #endif /* __GNUC__ */
484 #ifdef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8
485 static inline __int64
interlocked_cmpxchg64( __int64
*dest
, __int64 xchg
, __int64 compare
)
487 return __sync_val_compare_and_swap( dest
, compare
, xchg
);
490 extern __int64
interlocked_cmpxchg64( __int64
*dest
, __int64 xchg
, __int64 compare
);
493 #else /* NO_LIBWINE_PORT */
495 #define __WINE_NOT_PORTABLE(func) func##_is_not_portable func##_is_not_portable
497 #define ffs __WINE_NOT_PORTABLE(ffs)
498 #define fstatvfs __WINE_NOT_PORTABLE(fstatvfs)
499 #define getopt_long __WINE_NOT_PORTABLE(getopt_long)
500 #define getopt_long_only __WINE_NOT_PORTABLE(getopt_long_only)
501 #define interlocked_cmpxchg __WINE_NOT_PORTABLE(interlocked_cmpxchg)
502 #define interlocked_cmpxchg_ptr __WINE_NOT_PORTABLE(interlocked_cmpxchg_ptr)
503 #define interlocked_xchg __WINE_NOT_PORTABLE(interlocked_xchg)
504 #define interlocked_xchg_ptr __WINE_NOT_PORTABLE(interlocked_xchg_ptr)
505 #define interlocked_xchg_add __WINE_NOT_PORTABLE(interlocked_xchg_add)
506 #define lstat __WINE_NOT_PORTABLE(lstat)
507 #define memcpy_unaligned __WINE_NOT_PORTABLE(memcpy_unaligned)
509 #define memmove __WINE_NOT_PORTABLE(memmove)
510 #define pread __WINE_NOT_PORTABLE(pread)
511 #define pwrite __WINE_NOT_PORTABLE(pwrite)
512 #define spawnvp __WINE_NOT_PORTABLE(spawnvp)
513 #define statvfs __WINE_NOT_PORTABLE(statvfs)
514 #define strcasecmp __WINE_NOT_PORTABLE(strcasecmp)
515 #define strerror __WINE_NOT_PORTABLE(strerror)
516 #define strncasecmp __WINE_NOT_PORTABLE(strncasecmp)
517 #define usleep __WINE_NOT_PORTABLE(usleep)
519 #endif /* NO_LIBWINE_PORT */
521 #endif /* !defined(__WINE_WINE_PORT_H) */