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
32 #define _FILE_OFFSET_BITS 64
33 #define _GNU_SOURCE /* for pread/pwrite */
36 #include <sys/types.h>
53 /****************************************************************
57 #if !defined(_MSC_VER) && !defined(__int64)
58 # if defined(__x86_64__) || defined(_WIN64)
61 # define __int64 long long
75 typedef unsigned int size_t;
80 #ifndef HAVE_FSBLKCNT_T
81 typedef unsigned long fsblkcnt_t
;
83 #ifndef HAVE_FSFILCNT_T
84 typedef unsigned long fsfilcnt_t
;
87 #ifndef HAVE_STRUCT_STATVFS_F_BLOCKS
90 unsigned long f_bsize
;
91 unsigned long f_frsize
;
100 unsigned long f_namemax
;
102 #endif /* HAVE_STRUCT_STATVFS_F_BLOCKS */
105 /****************************************************************
112 #define RTLD_LAZY 0x001
113 #define RTLD_NOW 0x002
114 #define RTLD_GLOBAL 0x100
117 #ifdef HAVE_ONE_ARG_MKDIR
118 #define mkdir(path,mode) mkdir(path)
121 #if !defined(HAVE_FTRUNCATE) && defined(HAVE_CHSIZE)
122 #define ftruncate chsize
125 #if !defined(HAVE_POPEN) && defined(HAVE__POPEN)
129 #if !defined(HAVE_PCLOSE) && defined(HAVE__PCLOSE)
130 #define pclose _pclose
133 #if !defined(HAVE_STRDUP) && defined(HAVE__STRDUP)
134 #define strdup _strdup
137 #if !defined(HAVE_SNPRINTF) && defined(HAVE__SNPRINTF)
138 #define snprintf _snprintf
141 #if !defined(HAVE_VSNPRINTF) && defined(HAVE__VSNPRINTF)
142 #define vsnprintf _vsnprintf
145 #if !defined(HAVE_STRTOLL) && defined(HAVE__STRTOI64)
146 #define strtoll _strtoi64
149 #if !defined(HAVE_STRTOULL) && defined(HAVE__STRTOUI64)
150 #define strtoull _strtoui64
154 # define S_ISLNK(mod) (0)
158 # define S_ISSOCK(mod) (0)
162 # define S_ISDIR(mod) (((mod) & _S_IFMT) == _S_IFDIR)
166 # define S_ISCHR(mod) (((mod) & _S_IFMT) == _S_IFCHR)
170 # define S_ISFIFO(mod) (((mod) & _S_IFMT) == _S_IFIFO)
174 # define S_ISREG(mod) (((mod) & _S_IFMT) == _S_IFREG)
177 /* So we open files in 64 bit access mode on Linux */
179 # define O_LARGEFILE 0
183 # define O_NONBLOCK 0
191 /****************************************************************
196 #define M_PI 3.14159265358979323846
200 #define M_PI_2 1.570796326794896619
204 /* Macros to define assembler functions somewhat portably */
206 #if defined(__GNUC__) && !defined(__INTERIX) && !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(__APPLE__)
207 # define __ASM_GLOBAL_FUNC(name,code) \
208 __asm__( ".text\n\t" \
210 ".globl " __ASM_NAME(#name) "\n\t" \
211 __ASM_FUNC(#name) "\n" \
212 __ASM_NAME(#name) ":\n\t" \
215 #else /* defined(__GNUC__) && !defined(__MINGW32__) && !defined(__APPLE__) */
216 # define __ASM_GLOBAL_FUNC(name,code) \
217 void __asm_dummy_##name(void) { \
218 asm( ".align 4\n\t" \
219 ".globl " __ASM_NAME(#name) "\n\t" \
220 __ASM_FUNC(#name) "\n" \
221 __ASM_NAME(#name) ":\n\t" \
224 #endif /* __GNUC__ */
227 /****************************************************************
228 * Function definitions (only when using libwine_port)
231 #ifndef NO_LIBWINE_PORT
233 #ifndef HAVE_FSTATVFS
234 int fstatvfs( int fd
, struct statvfs
*buf
);
237 #ifndef HAVE_GETOPT_LONG
244 #ifndef HAVE_STRUCT_OPTION_NAME
254 extern int getopt_long (int ___argc
, char *const *___argv
,
255 const char *__shortopts
,
256 const struct option
*__longopts
, int *__longind
);
257 extern int getopt_long_only (int ___argc
, char *const *___argv
,
258 const char *__shortopts
,
259 const struct option
*__longopts
, int *__longind
);
260 #endif /* HAVE_GETOPT_LONG */
268 int futimes(int fd
, const struct timeval
*tv
);
271 #ifndef HAVE_GETPAGESIZE
272 size_t getpagesize(void);
273 #endif /* HAVE_GETPAGESIZE */
277 #endif /* HAVE_GETTID */
288 int lstat(const char *file_name
, struct stat
*buf
);
289 #endif /* HAVE_LSTAT */
292 void *memmove(void *dest
, const void *src
, size_t len
);
293 #endif /* !defined(HAVE_MEMMOVE) */
307 #define POLLNVAL 0x20
308 int poll( struct pollfd
*fds
, unsigned int count
, int timeout
);
309 #endif /* HAVE_POLL */
312 ssize_t
pread( int fd
, void *buf
, size_t count
, off_t offset
);
313 #endif /* HAVE_PREAD */
316 ssize_t
pwrite( int fd
, const void *buf
, size_t count
, off_t offset
);
317 #endif /* HAVE_PWRITE */
319 #ifndef HAVE_READLINK
320 int readlink( const char *path
, char *buf
, size_t size
);
321 #endif /* HAVE_READLINK */
324 int statvfs( const char *path
, struct statvfs
*buf
);
327 #ifndef HAVE_STRNCASECMP
328 # ifndef HAVE__STRNICMP
329 int strncasecmp(const char *str1
, const char *str2
, size_t n
);
331 # define strncasecmp _strnicmp
333 #endif /* !defined(HAVE_STRNCASECMP) */
335 #ifndef HAVE_STRERROR
336 const char *strerror(int err
);
337 #endif /* !defined(HAVE_STRERROR) */
339 #ifndef HAVE_STRCASECMP
340 # ifndef HAVE__STRICMP
341 int strcasecmp(const char *str1
, const char *str2
);
343 # define strcasecmp _stricmp
345 #endif /* !defined(HAVE_STRCASECMP) */
348 int symlink(const char *from
, const char *to
);
352 int usleep (unsigned int useconds
);
353 #endif /* !defined(HAVE_USLEEP) */
356 static inline void *memcpy_unaligned( void *dst
, const void *src
, size_t size
)
358 return memcpy( dst
, src
, size
);
361 extern void *memcpy_unaligned( void *dst
, const void *src
, size_t size
);
362 #endif /* __i386__ */
364 extern int mkstemps(char *template, int suffix_len
);
366 /* Process creation flags */
370 # define _P_OVERLAY 2
371 # define _P_NOWAITO 3
375 extern int spawnvp(int mode
, const char *cmdname
, const char * const argv
[]);
378 /* Interlocked functions */
380 #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
382 extern inline int interlocked_cmpxchg( int *dest
, int xchg
, int compare
);
383 extern inline void *interlocked_cmpxchg_ptr( void **dest
, void *xchg
, void *compare
);
384 extern __int64
interlocked_cmpxchg64( __int64
*dest
, __int64 xchg
, __int64 compare
);
385 extern inline int interlocked_xchg( int *dest
, int val
);
386 extern inline void *interlocked_xchg_ptr( void **dest
, void *val
);
387 extern inline int interlocked_xchg_add( int *dest
, int incr
);
389 extern inline int interlocked_cmpxchg( int *dest
, int xchg
, int compare
)
392 __asm__
__volatile__( "lock; cmpxchgl %2,(%1)"
393 : "=a" (ret
) : "r" (dest
), "r" (xchg
), "0" (compare
) : "memory" );
397 extern inline void *interlocked_cmpxchg_ptr( void **dest
, void *xchg
, void *compare
)
401 __asm__
__volatile__( "lock; cmpxchgq %2,(%1)"
402 : "=a" (ret
) : "r" (dest
), "r" (xchg
), "0" (compare
) : "memory" );
404 __asm__
__volatile__( "lock; cmpxchgl %2,(%1)"
405 : "=a" (ret
) : "r" (dest
), "r" (xchg
), "0" (compare
) : "memory" );
410 extern inline int interlocked_xchg( int *dest
, int val
)
413 __asm__
__volatile__( "lock; xchgl %0,(%1)"
414 : "=r" (ret
) : "r" (dest
), "0" (val
) : "memory" );
418 extern inline void *interlocked_xchg_ptr( void **dest
, void *val
)
422 __asm__
__volatile__( "lock; xchgq %0,(%1)"
423 : "=r" (ret
) :"r" (dest
), "0" (val
) : "memory" );
425 __asm__
__volatile__( "lock; xchgl %0,(%1)"
426 : "=r" (ret
) : "r" (dest
), "0" (val
) : "memory" );
431 extern inline int interlocked_xchg_add( int *dest
, int incr
)
434 __asm__
__volatile__( "lock; xaddl %0,(%1)"
435 : "=r" (ret
) : "r" (dest
), "0" (incr
) : "memory" );
441 extern int interlocked_cmpxchg( int *dest
, int xchg
, int compare
);
442 extern void *interlocked_cmpxchg_ptr( void **dest
, void *xchg
, void *compare
);
443 extern __int64
interlocked_cmpxchg64( __int64
*dest
, __int64 xchg
, __int64 compare
);
444 extern int interlocked_xchg( int *dest
, int val
);
445 extern void *interlocked_xchg_ptr( void **dest
, void *val
);
446 extern int interlocked_xchg_add( int *dest
, int incr
);
448 #endif /* __GNUC__ */
450 #else /* NO_LIBWINE_PORT */
452 #define __WINE_NOT_PORTABLE(func) func##_is_not_portable func##_is_not_portable
454 #define ffs __WINE_NOT_PORTABLE(ffs)
455 #define fstatvfs __WINE_NOT_PORTABLE(fstatvfs)
456 #define futimes __WINE_NOT_PORTABLE(futimes)
457 #define getopt_long __WINE_NOT_PORTABLE(getopt_long)
458 #define getopt_long_only __WINE_NOT_PORTABLE(getopt_long_only)
459 #define getpagesize __WINE_NOT_PORTABLE(getpagesize)
460 #define interlocked_cmpxchg __WINE_NOT_PORTABLE(interlocked_cmpxchg)
461 #define interlocked_cmpxchg_ptr __WINE_NOT_PORTABLE(interlocked_cmpxchg_ptr)
462 #define interlocked_xchg __WINE_NOT_PORTABLE(interlocked_xchg)
463 #define interlocked_xchg_ptr __WINE_NOT_PORTABLE(interlocked_xchg_ptr)
464 #define interlocked_xchg_add __WINE_NOT_PORTABLE(interlocked_xchg_add)
465 #define lstat __WINE_NOT_PORTABLE(lstat)
466 #define memcpy_unaligned __WINE_NOT_PORTABLE(memcpy_unaligned)
468 #define memmove __WINE_NOT_PORTABLE(memmove)
469 #define pread __WINE_NOT_PORTABLE(pread)
470 #define pwrite __WINE_NOT_PORTABLE(pwrite)
471 #define spawnvp __WINE_NOT_PORTABLE(spawnvp)
472 #define statvfs __WINE_NOT_PORTABLE(statvfs)
473 #define strcasecmp __WINE_NOT_PORTABLE(strcasecmp)
474 #define strerror __WINE_NOT_PORTABLE(strerror)
475 #define strncasecmp __WINE_NOT_PORTABLE(strncasecmp)
476 #define usleep __WINE_NOT_PORTABLE(usleep)
478 #endif /* NO_LIBWINE_PORT */
480 #endif /* !defined(__WINE_WINE_PORT_H) */