This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author David.Edelsohn
Recipients David.Edelsohn, Michael.Felt, xdegaye
Date 2018-01-02.15:30:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1514907042.87.0.467229070634.issue32390@psf.upfronthosting.co.za>
In-reply-to
Content
/* typedef for the File System Identifier (fsid).  This must correspond 
 * to the "struct fsid" structure in _ALL_SOURCE below.
 */
typedef struct fsid_t {
#ifdef __64BIT_KERNEL
        unsigned long val[2];
#else  /* __64BIT_KERNEL */
#ifdef _ALL_SOURCE
        unsigned int val[2];
#else  /* _ALL_SOURCE */
        unsigned int __val[2];
#endif /* _ALL_SOURCE */
#endif /* __64BIT_KERNEL */
} fsid_t;

#ifdef _KERNEL
typedef struct fsid32_t {
        unsigned int val[2];
} fsid32_t;
#endif /* __64BIT_KERNEL */

typedef struct fsid64_t {
#if defined(_ALL_SOURCE) && (defined(__64BIT__) || defined(_LONG_LONG))
        uint64_t val[2];
#else /* _ALL_SOURCE */
        uint32_t __val[4];
#endif /* _ALL_SOURCE */
} fsid64_t;

/* typedef for the File System Identifier (fsid) */
struct fsid {
#ifndef __64BIT_KERNEL
        unsigned int    val[2];
#else
        unsigned long   val[2];
#endif
};
History
Date User Action Args
2018-01-02 15:30:42David.Edelsohnsetrecipients: + David.Edelsohn, xdegaye, Michael.Felt
2018-01-02 15:30:42David.Edelsohnsetmessageid: <1514907042.87.0.467229070634.issue32390@psf.upfronthosting.co.za>
2018-01-02 15:30:42David.Edelsohnlinkissue32390 messages
2018-01-02 15:30:42David.Edelsohncreate