¿Qué significa el __attribute__(bitwise)
de GCC? El atributo no se menciona en las páginas de información de GCC-4.6. Me stubled sobre él en el archivo fuente open-iscsi-2.0.871/include/iscsi_proto.h
en el proyecto abierto iSCSI, donde se utiliza comoGCC Bitwise Attribute
...
/*
* If running svn modules we may need to define these.
* This should not go upstream since this is already properly defined there
*/
#ifdef __CHECKER__
#define __bitwise__ __attribute__((bitwise))
#else
#define __bitwise__
#endif
#ifdef __CHECK_ENDIAN__
#define __bitwise __bitwise__
#else
#define __bitwise
#endif
/*! initiator tags; opaque for target */
typedef uint32_t __bitwise__ itt_t;
/*! below makes sense only for initiator that created this tag */
#define build_itt(itt, age) ((__force itt_t)\
((itt) | ((age) << ISCSI_AGE_SHIFT)))
#define get_itt(itt) ((__force uint32_t)(itt_t)(itt) & ISCSI_ITT_MASK)
#define RESERVED_ITT ((__force itt_t)0xffffffff)
...
Estoy sospechando algo relacionado con de orden de bytes pero no puedo hacer ningún sentido de la fragmento dado arriba.