Better organize the filecaps structure, which reduces its size from 32 bytes

to 24 bytes on 64bit archs.
This commit is contained in:
pjd 2013-08-18 09:45:52 +00:00
parent e405686dc7
commit c4b895432e

View File

@ -43,9 +43,9 @@
struct filecaps {
cap_rights_t fc_rights; /* per-descriptor capability rights */
uint32_t fc_fcntls; /* per-descriptor allowed fcntls */
u_long *fc_ioctls; /* per-descriptor allowed ioctls */
int16_t fc_nioctls; /* fc_ioctls array size */
uint32_t fc_fcntls; /* per-descriptor allowed fcntls */
};
struct filedescent {