mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 18:14:24 +08:00
52 lines
1.8 KiB
C
52 lines
1.8 KiB
C
/*
|
|
FUSE: Filesystem in Userspace
|
|
Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
|
|
|
|
This program can be distributed under the terms of the GNU LGPLv2.
|
|
See the file COPYING.LIB
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include <pthread.h>
|
|
|
|
#ifndef USE_UCLIBC
|
|
#define fuse_mutex_init(mut) pthread_mutex_init(mut, NULL)
|
|
#else
|
|
static inline void fuse_mutex_init(pthread_mutex_t *mut)
|
|
{
|
|
pthread_mutexattr_t attr;
|
|
pthread_mutexattr_init(&attr);
|
|
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ADAPTIVE_NP);
|
|
pthread_mutex_init(mut, &attr);
|
|
pthread_mutexattr_destroy(&attr);
|
|
}
|
|
#endif
|
|
|
|
#ifdef HAVE_STRUCT_STAT_ST_ATIM
|
|
/* Linux */
|
|
#define ST_ATIM_NSEC(stbuf) ((stbuf)->st_atim.tv_nsec)
|
|
#define ST_CTIM_NSEC(stbuf) ((stbuf)->st_ctim.tv_nsec)
|
|
#define ST_MTIM_NSEC(stbuf) ((stbuf)->st_mtim.tv_nsec)
|
|
#define ST_ATIM_NSEC_SET(stbuf, val) (stbuf)->st_atim.tv_nsec = (val)
|
|
#define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtim.tv_nsec = (val)
|
|
#elif defined(HAVE_STRUCT_STAT_ST_ATIMESPEC)
|
|
/* FreeBSD */
|
|
#define ST_ATIM_NSEC(stbuf) ((stbuf)->st_atimespec.tv_nsec)
|
|
#define ST_CTIM_NSEC(stbuf) ((stbuf)->st_ctimespec.tv_nsec)
|
|
#define ST_MTIM_NSEC(stbuf) ((stbuf)->st_mtimespec.tv_nsec)
|
|
#define ST_ATIM_NSEC_SET(stbuf, val) (stbuf)->st_atimespec.tv_nsec = (val)
|
|
#define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtimespec.tv_nsec = (val)
|
|
#elif defined(HAVE_STRUCT_STAT_ST_ATIMENSEC)
|
|
#define ST_ATIM_NSEC(stbuf) ((stbuf)->st_atimensec)
|
|
#define ST_CTIM_NSEC(stbuf) ((stbuf)->st_ctimensec)
|
|
#define ST_MTIM_NSEC(stbuf) ((stbuf)->st_mtimensec)
|
|
#define ST_ATIM_NSEC_SET(stbuf, val) (stbuf)->st_atimensec = (val)
|
|
#define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtimensec = (val)
|
|
#else
|
|
#define ST_ATIM_NSEC(stbuf) 0
|
|
#define ST_CTIM_NSEC(stbuf) 0
|
|
#define ST_MTIM_NSEC(stbuf) 0
|
|
#define ST_ATIM_NSEC_SET(stbuf, val) do { } while (0)
|
|
#define ST_MTIM_NSEC_SET(stbuf, val) do { } while (0)
|
|
#endif
|