summaryrefslogtreecommitdiff
path: root/lib/rpmal.h
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2002-08-19 22:27:44 +0000
committerjbj <devnull@localhost>2002-08-19 22:27:44 +0000
commitae8428475cbfde3af746d51a056e0655fe6269d8 (patch)
tree6d173ac13fbc11799ea49d3dd70d5b8ee452283a /lib/rpmal.h
parent105f7a517cd13b7c40b359548a9c75cbd00ed9c4 (diff)
downloadrpm-ae8428475cbfde3af746d51a056e0655fe6269d8.tar.gz
rpm-ae8428475cbfde3af746d51a056e0655fe6269d8.tar.bz2
rpm-ae8428475cbfde3af746d51a056e0655fe6269d8.zip
- add --with-efence to configure, check install/upgrade with efence.
- beecrypt: short hex string conversion overflows target buffer. - mark "successors only" packages in transaction. - reap scriptlets with SIGCHLD handler. - rename PSM_t to rpmpsm, add methods and refcounts to manage. - remove %%configure/%%makeinstall from arch-os/macros, default is OK. - don't export MALLOC_CHECK_ to scriptlets. - squeaky clean memory leak checking. - always malloc rpmfi structure, refcounts are correct in rpmtsRun(). - skip redundant /sbin/ldconfig scripts on upgrade (if possible). CVS patchset: 5645 CVS date: 2002/08/19 22:27:44
Diffstat (limited to 'lib/rpmal.h')
-rw-r--r--lib/rpmal.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/rpmal.h b/lib/rpmal.h
index 508be2dfe..0a4f1fed4 100644
--- a/lib/rpmal.h
+++ b/lib/rpmal.h
@@ -37,7 +37,8 @@ rpmal rpmalCreate(int delta)
*/
/*@null@*/
rpmal rpmalFree(/*@only@*/ /*@null@*/ rpmal al)
- /*@modifies al @*/;
+ /*@globals fileSystem @*/
+ /*@modifies al, fileSystem @*/;
/**
* Delete package from available list.
@@ -46,7 +47,8 @@ rpmal rpmalFree(/*@only@*/ /*@null@*/ rpmal al)
*/
/*@-exportlocal@*/
void rpmalDel(/*@null@*/ rpmal al, /*@null@*/ alKey pkgKey)
- /*@modifies al @*/;
+ /*@globals fileSystem @*/
+ /*@modifies al, fileSystem @*/;
/*@=exportlocal@*/
/**
@@ -62,7 +64,8 @@ alKey rpmalAdd(rpmal * alistp,
/*@dependent@*/ /*@null@*/ alKey pkgKey,
/*@dependent@*/ /*@null@*/ fnpyKey key,
/*@null@*/ rpmds provides, /*@null@*/ rpmfi fi)
- /*@modifies *alistp, provides, fi @*/;
+ /*@globals fileSystem @*/
+ /*@modifies *alistp, provides, fi, fileSystem @*/;
/**
* Add package provides to available list index.