| rpmio.h | | rpmio.h | |
| | | | |
| skipping to change at line 304 | | skipping to change at line 304 | |
| /*@modifies *st, errno, fileSystem, internalState @*/; | | /*@modifies *st, errno, fileSystem, internalState @*/; | |
| | | | |
| /** | | /** | |
| * fstat(2) clone. | | * fstat(2) clone. | |
| */ | | */ | |
| int Fstat(FD_t fd, /*@out@*/ struct stat * st) | | int Fstat(FD_t fd, /*@out@*/ struct stat * st) | |
| /*@globals errno, fileSystem, internalState @*/ | | /*@globals errno, fileSystem, internalState @*/ | |
| /*@modifies *st, errno, fileSystem, internalState @*/; | | /*@modifies *st, errno, fileSystem, internalState @*/; | |
| | | | |
| /** | | /** | |
|
| | | * posix_fadvise(2) clone. | |
| | | */ | |
| | | int Fadvise(FD_t fd, off_t offset, off_t length, int advice) | |
| | | /*@globals fileSystem, internalState @*/ | |
| | | /*@modifies fileSystem, internalState @*/; | |
| | | | |
| | | /** | |
| * posix_fallocate(3)/fallocate(2) clone. | | * posix_fallocate(3)/fallocate(2) clone. | |
| */ | | */ | |
| int Fallocate(FD_t fd, off_t offset, off_t length) | | int Fallocate(FD_t fd, off_t offset, off_t length) | |
| /*@globals fileSystem, internalState @*/ | | /*@globals fileSystem, internalState @*/ | |
| /*@modifies fileSystem, internalState @*/; | | /*@modifies fileSystem, internalState @*/; | |
| | | | |
| /** | | /** | |
| * chown(2) clone. | | * chown(2) clone. | |
| * @todo Implement remotely. | | * @todo Implement remotely. | |
| */ | | */ | |
| | | | |
End of changes. 1 change blocks. |
| 0 lines changed or deleted | | 7 lines changed or added | |
|
| rpmversion.h | | rpmversion.h | |
| | | | |
| skipping to change at line 81 | | skipping to change at line 81 | |
| | | | |
| /* link-time information */ | | /* link-time information */ | |
| extern uint32_t rpmlibVersion(void) | | extern uint32_t rpmlibVersion(void) | |
| /*@*/; | | /*@*/; | |
| extern uint32_t rpmlibTimestamp(void) | | extern uint32_t rpmlibTimestamp(void) | |
| /*@*/; | | /*@*/; | |
| extern uint32_t rpmlibVendor(void) | | extern uint32_t rpmlibVendor(void) | |
| /*@*/; | | /*@*/; | |
| | | | |
| /* compile-time information */ | | /* compile-time information */ | |
|
| #define RPMLIB_VERSION RPMLIB_VERSION_ENCODE(5,3,r,4,0,_) | | #define RPMLIB_VERSION RPMLIB_VERSION_ENCODE(5,3,r,5,0,_) | |
| #define RPMLIB_TIMESTAMP RPMLIB_TIMESTAMP_ENCODE(2010,9,18,0,0) | | #define RPMLIB_TIMESTAMP RPMLIB_TIMESTAMP_ENCODE(2010,9,18,0,0) | |
| #define RPMLIB_VENDOR RPMLIB_VENDOR_ENCODE('R','P','M','5') | | #define RPMLIB_VENDOR RPMLIB_VENDOR_ENCODE('R','P','M','5') | |
| | | | |
| /* RPM release version encoding */ | | /* RPM release version encoding */ | |
| #define RPMLIB_VERSION_ENCODE(major,minor,type,micro,revision,snap) \ | | #define RPMLIB_VERSION_ENCODE(major,minor,type,micro,revision,snap) \ | |
| ( RPMLIB_BITFIELD_SET(31,27,(major)) \ | | ( RPMLIB_BITFIELD_SET(31,27,(major)) \ | |
| | RPMLIB_BITFIELD_SET(26,21,(minor)) \ | | | RPMLIB_BITFIELD_SET(26,21,(minor)) \ | |
| | RPMLIB_BITFIELD_SET(20,18,RPMLIB_VERSION_ENCODE_T(type)) \ | | | RPMLIB_BITFIELD_SET(20,18,RPMLIB_VERSION_ENCODE_T(type)) \ | |
| | RPMLIB_BITFIELD_SET(17,10,(micro)) \ | | | RPMLIB_BITFIELD_SET(17,10,(micro)) \ | |
| | RPMLIB_BITFIELD_SET(9,1,(revision)) \ | | | RPMLIB_BITFIELD_SET(9,1,(revision)) \ | |
| | | | |
End of changes. 1 change blocks. |
| 1 lines changed or deleted | | 1 lines changed or added | |
|