49 lines
1.7 KiB
C
49 lines
1.7 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 <pthread.h>
|
|
|
|
/*
|
|
Versioned symbols cannot be used in some cases because it
|
|
- not supported on MacOSX (in MachO binary format)
|
|
*/
|
|
#ifndef __APPLE__
|
|
# if HAVE_SYMVER_ATTRIBUTE
|
|
# define FUSE_SYMVER(sym1, sym2) __attribute__ ((symver (sym2)))
|
|
# else
|
|
# define FUSE_SYMVER(sym1, sym2) __asm__("\t.symver " sym1 "," sym2);
|
|
# endif
|
|
#else
|
|
#define FUSE_SYMVER(sym1, sym2)
|
|
#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_CTIM_NSEC_SET(stbuf, val) (stbuf)->st_ctim.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_CTIM_NSEC_SET(stbuf, val) (stbuf)->st_ctimespec.tv_nsec = (val)
|
|
#define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtimespec.tv_nsec = (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_CTIM_NSEC_SET(stbuf, val) do { } while (0)
|
|
#define ST_MTIM_NSEC_SET(stbuf, val) do { } while (0)
|
|
#endif
|