db.h   db.h 
skipping to change at line 47 skipping to change at line 47
#undef __P #undef __P
#define __P(protos) protos #define __P(protos) protos
/* /*
* Berkeley DB version information. * Berkeley DB version information.
*/ */
#define DB_VERSION_FAMILY 11 #define DB_VERSION_FAMILY 11
#define DB_VERSION_RELEASE 2 #define DB_VERSION_RELEASE 2
#define DB_VERSION_MAJOR 5 #define DB_VERSION_MAJOR 5
#define DB_VERSION_MINOR 0 #define DB_VERSION_MINOR 0
#define DB_VERSION_PATCH 21 #define DB_VERSION_PATCH 26
#define DB_VERSION_STRING "Berkeley DB 5.0.21: (March 30, 2010 #define DB_VERSION_STRING "Berkeley DB 5.0.26: (June 25, 2010)
)" "
#define DB_VERSION_FULL_STRING "Berkeley DB 11g Release 2, library #define DB_VERSION_FULL_STRING "Berkeley DB 11g Release 2, library
version 11.2.5.0.21: (March 30, 2010)" version 11.2.5.0.26: (June 25, 2010)"
/* /*
* !!! * !!!
* Berkeley DB uses specifically sized types. If they're not provided by * Berkeley DB uses specifically sized types. If they're not provided by
* the system, typedef them here. * the system, typedef them here.
* *
* We protect them against multiple inclusion using __BIT_TYPES_DEFINED__, * We protect them against multiple inclusion using __BIT_TYPES_DEFINED__,
* as does BIND and Kerberos, since we don't know for sure what #include * as does BIND and Kerberos, since we don't know for sure what #include
* files the user is using. * files the user is using.
* *
skipping to change at line 2767 skipping to change at line 2767
int db_env_set_func_rename __P((int (*)(const char *, const char *))); int db_env_set_func_rename __P((int (*)(const char *, const char *)));
int db_env_set_func_seek __P((int (*)(int, off_t, int))); int db_env_set_func_seek __P((int (*)(int, off_t, int)));
int db_env_set_func_unlink __P((int (*)(const char *))); int db_env_set_func_unlink __P((int (*)(const char *)));
int db_env_set_func_write __P((ssize_t (*)(int, const void *, size_t))); int db_env_set_func_write __P((ssize_t (*)(int, const void *, size_t)));
int db_env_set_func_yield __P((int (*)(u_long, u_long))); int db_env_set_func_yield __P((int (*)(u_long, u_long)));
int db_env_create __P((DB_ENV **, u_int32_t)); int db_env_create __P((DB_ENV **, u_int32_t));
char *db_version __P((int *, int *, int *)); char *db_version __P((int *, int *, int *));
char *db_full_version __P((int *, int *, int *, int *, int *)); char *db_full_version __P((int *, int *, int *, int *, int *));
int log_compare __P((const DB_LSN *, const DB_LSN *)); int log_compare __P((const DB_LSN *, const DB_LSN *));
int db_sequence_create __P((DB_SEQUENCE **, DB *, u_int32_t)); int db_sequence_create __P((DB_SEQUENCE **, DB *, u_int32_t));
#ifdef HAVE_DBM #if DB_DBM_HSEARCH != 0
int __db_ndbm_clearerr __P((DBM *)); int __db_ndbm_clearerr __P((DBM *));
void __db_ndbm_close __P((DBM *)); void __db_ndbm_close __P((DBM *));
int __db_ndbm_delete __P((DBM *, datum)); int __db_ndbm_delete __P((DBM *, datum));
int __db_ndbm_dirfno __P((DBM *)); int __db_ndbm_dirfno __P((DBM *));
int __db_ndbm_error __P((DBM *)); int __db_ndbm_error __P((DBM *));
datum __db_ndbm_fetch __P((DBM *, datum)); datum __db_ndbm_fetch __P((DBM *, datum));
datum __db_ndbm_firstkey __P((DBM *)); datum __db_ndbm_firstkey __P((DBM *));
datum __db_ndbm_nextkey __P((DBM *)); datum __db_ndbm_nextkey __P((DBM *));
DBM *__db_ndbm_open __P((const char *, int, int)); DBM *__db_ndbm_open __P((const char *, int, int));
int __db_ndbm_pagfno __P((DBM *)); int __db_ndbm_pagfno __P((DBM *));
 End of changes. 2 change blocks. 
6 lines changed or deleted 6 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,3,0,_) #define RPMLIB_VERSION RPMLIB_VERSION_ENCODE(5,3,r,4,0,_)
#define RPMLIB_TIMESTAMP RPMLIB_TIMESTAMP_ENCODE(2009,0,0,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)) \
| RPMLIB_BITFIELD_SET(0,0,RPMLIB_VERSION_ENCODE_S(snap))) | RPMLIB_BITFIELD_SET(0,0,RPMLIB_VERSION_ENCODE_S(snap)))
 End of changes. 1 change blocks. 
2 lines changed or deleted 2 lines changed or added


 yarn.h   yarn.h 
skipping to change at line 131 skipping to change at line 131
/*@=redecl@*/ /*@=redecl@*/
/*@-globuse@*/ /*@-globuse@*/
void yarnMem(void *(*)(size_t), void (*)(void *)) void yarnMem(void *(*)(size_t), void (*)(void *))
/*@globals internalState @*/ /*@globals internalState @*/
/*@modifies internalState @*/; /*@modifies internalState @*/;
/*@=globuse@*/ /*@=globuse@*/
typedef struct yarnThread_s * yarnThread; typedef struct yarnThread_s * yarnThread;
/*@only@*/ /*@only@*/
yarnThread yarnLaunchStack(void (*probe)(void *), void *payload,
/*@null@*/ void * stack, size_t nstack)
/*@globals fileSystem, internalState @*/
/*@modifies fileSystem, internalState @*/;
/*@only@*/
yarnThread yarnLaunch(void (*probe)(void *), void *payload) yarnThread yarnLaunch(void (*probe)(void *), void *payload)
/*@globals fileSystem, internalState @*/ /*@globals fileSystem, internalState @*/
/*@modifies fileSystem, internalState @*/; /*@modifies fileSystem, internalState @*/;
/*@only@*/ /*@null@*/ /*@only@*/ /*@null@*/
yarnThread yarnJoin(/*@only@*/ yarnThread ally) yarnThread yarnJoin(/*@only@*/ yarnThread ally)
/*@globals fileSystem, internalState @*/ /*@globals fileSystem, internalState @*/
/*@modifies ally, fileSystem, internalState @*/; /*@modifies ally, fileSystem, internalState @*/;
int yarnJoinAll(void) int yarnJoinAll(void)
/*@globals fileSystem, internalState @*/ /*@globals fileSystem, internalState @*/
/*@modifies fileSystem, internalState @*/; /*@modifies fileSystem, internalState @*/;
 End of changes. 1 change blocks. 
0 lines changed or deleted 5 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/