2010-01-19 3 views
2

AIX에서 statvfs 함수 호출을 사용하고 있습니다. 그리고 GCC 컴파일러를 사용합니다. 전처리기로 statvfs64를 해결하기 위해 statvfs를 호출하고 싶습니다.GCC 옵션으로 statvfs64 가져 오기

예 : Solaris에서 "-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS = 64"플래그를 gcc와 함께 사용하면 statvfs64로 해석됩니다.

AIX에서 statvfs의 statvfs64로 나를 해결하는 비슷한 플래그를 얻는 데 도움을 주시기 바랍니다.

감사 & 감사합니다, Sivaram T

답변

0

나는 AIX 시스템이없는, 그래서 설정하는 당신에게 플래그를 말할 수 없다. 그러나 Solaris에서는 sys/statvfs.h을보고 어떻게 작동하는지 볼 수 있습니다 (예 : statvfs64). 주변의 #ifdef 블록을 찾으십시오. 줄을보실 수 있습니다.

#if defined(_LARGEFILE64_SOURCE) 
    typedef struct statvfs64 { 
    ..... 
    } statvfs64_t; 
#endif 

#if !defined(_LP64) && _FILE_OFFSET_BITS == 64 
... 
#define statvfs_t    statvfs64_t 
#define statvfs     statvfs64 
#define fstatvfs    fstatvfs64 
#endif 

정확하게 똑같은 일을 할 수 있습니다. 그러나 AIX는 다르게 동작 할 수 있으며 사전 처리기를 사용하여 32 비트와 64 비트 버전간에 전환하지 않을 수 있습니다.

분명하지 않은 경우 여기 sys/statvfs.h의 내용을 게시 할 수 있으며 Google에서 사용자를 확인할 수 있습니다.

0

AIX의 iirc에는 _LARGE_FILES 토큰 세트가 필요하므로 암시적인 대용량 파일 지원이 가능합니다. 당신이 explicittly statvfs64를 호출 할 경우

-D_LARGE_FILES 

, 당신은

-D_LARGE_FILE_API 
+0

안녕하세요, 저는 "-D_LARGE_FILES"및 "-D_LARGE_FILE_API"옵션을 사용해 보았습니다. – Thumbeti

2

감사 즉각적인 응답을 많이해야한다. AIX include 파일에는 "_LARGEFILE64_SOURCE"정의가 없습니다.

다음 옵션을 알게되었습니다 "-maix64 -mpowerpc64"는 statvfs64로 해결할 수 있습니다. 이것이 올바른지 아닌지는 확실하지 않습니다.

다음 SYS/statvfs.h 파일

을 찾아주세요 ================================ =================

#ifndef _H_STATVFS 
#define _H_STATVFS 

#ifndef _H_STANDARDS 
#include <standards.h> 
#endif 

#if _XOPEN_SOURCE_EXTENDED==1 

#include <strict_stdtypes.h> 

#ifndef _H_TYPES 
#include <sys/types.h> 
#endif 

#include <end_strict_stdtypes.h> 

#define _FSTYPSIZ  16 

#ifdef _ALL_SOURCE 
#include <sys/vmount.h> 

#define FSTYPSIZ  _FSTYPSIZ 
#endif 

/* 
* statvfs system call return structure 
*/ 

struct statvfs { 
    ulong_t f_bsize;  /* preferred file system block size   */ 
    ulong_t f_frsize; /* fundamental file system block size  */ 
    fsblkcnt_t f_blocks; /* total # of blocks of f_frsize in fs  */ 
    fsblkcnt_t f_bfree;  /* total # of free blocks     */ 
    fsblkcnt_t f_bavail; /* # of blocks available to non super user */ 
    fsfilcnt_t f_files;  /* total # of file nodes (inode in JFS)  */ 
    fsfilcnt_t f_ffree;  /* total # of free file nodes    */ 
    fsfilcnt_t f_favail; /* # of nodes available to non super user */ 
#ifdef _ALL_SOURCE 
    fsid_t  f_fsid;  /* file system id       */ 
#else 
    ulong_t f_fsid;  /* file system id       */ 
#ifndef __64BIT__ 
    ulong_t f_fstype; /* file system type       */ 
#endif 
#endif /* _ALL_SOURCE */ 
    char  f_basetype[_FSTYPSIZ]; /* Filesystem type name (eg. jfs) */ 
    ulong_t f_flag;  /* bit mask of flags       */ 
    ulong_t f_namemax; /* maximum filename length     */ 
    char  f_fstr[32]; /* filesystem-specific string */ 
    ulong_t f_filler[16];/* reserved for future use     */ 
}; 

#define ST_NOSUID  0x0040   /* don't maintain SUID capability */ 

#define ST_RDONLY  0x0001   /* file system mounted read only  */ 
#define ST_NODEV  0x0080   /* don't allow device access across */ 
            /* this mount      */ 

/* 
* Prototypes 
*/ 
#ifdef _NO_PROTO 
extern int statvfs(); 
extern int fstatvfs(); 
#else 
extern int statvfs(const char *__restrict__, struct statvfs *__restrict__); 
extern int fstatvfs(int, struct statvfs *); 
#endif 

/* 
* statvfs64 system call return structure 
*/ 
#ifdef _ALL_SOURCE 

struct statvfs64 { 
    blksize64_t f_bsize; /* preferred file system block size   */ 
    blksize64_t f_frsize; /* fundamental file system block size  */ 
    blkcnt64_t f_blocks; /* total # of blocks of f_frsize in fs  */ 
    blkcnt64_t f_bfree;  /* total # of free blocks     */ 
    blkcnt64_t f_bavail; /* # of blocks available to non super user */ 
    blkcnt64_t f_files;  /* total # of file nodes (inode in JFS)  */ 
    blkcnt64_t f_ffree;  /* total # of free file nodes    */ 
    blkcnt64_t f_favail; /* # of nodes available to non super user */ 
    fsid64_t f_fsid;  /* file system id       */ 
    char  f_basetype[FSTYPSIZ]; /* Filesystem type name (eg. jfs) */ 
    ulong_t f_flag;  /* bit mask of flags       */ 
    ulong_t f_namemax; /* maximum filename length     */ 
    char  f_fstr[32]; /* filesystem-specific string */ 
    ulong_t f_filler[16];/* reserved for future use     */ 
}; 

/* 
* Prototypes 
*/ 
#ifdef _NO_PROTO 
extern int statvfs64(); 
extern int fstatvfs64(); 
#else 
extern int statvfs64(const char *__restrict__, struct statvfs64 *__restrict__); 
extern int fstatvfs64(int, struct statvfs64 *); 
#endif 

#endif /* _ALL_SOURCE */ 

#endif /* _XOPEN_SOURCE_EXTENDED */ 
#endif /* _H_STATVFS */ 

========================== =================================

+0

문제가 해결되면이 대답을 수락하십시오. 아이러니하게도, 나는 깃발을 통해서가 아닌 비슷한 것을 찾기 위해 이것을 발견했다. :) –