diff options
author | Dan McGee <dan@archlinux.org> | 2008-05-12 02:29:23 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-05-12 03:05:59 +0200 |
commit | 046003844739416ff6d168dd2dec76490adb0727 (patch) | |
tree | c28da11a0799626df087232dd46be7103c81be3e /lib/libalpm/db.h | |
parent | 3c3cb001a441656c2afba62f0361b83d4987339c (diff) | |
download | pacman-046003844739416ff6d168dd2dec76490adb0727.tar.gz pacman-046003844739416ff6d168dd2dec76490adb0727.tar.xz |
Remove some useless abstraction and start db cleanup
We have some useless abstractions like an alpm_db_rewind function. I've read
somewhere that readdir() was the worst filesystem function call invented,
and what do we do? Add a wrapper around it. Kill this abstraction and move
some other things into be_files that should be there anyway because they
are so tied to how a files backend works.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/db.h')
-rw-r--r-- | lib/libalpm/db.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/libalpm/db.h b/lib/libalpm/db.h index 743fa788..f6e0c3c6 100644 --- a/lib/libalpm/db.h +++ b/lib/libalpm/db.h @@ -60,16 +60,12 @@ int _alpm_prov_cmp(const void *provision, const void *needle); alpm_list_t *_alpm_db_whatprovides(pmdb_t *db, const char *package); /* be.c, backend specific calls */ -int _alpm_db_install(pmdb_t *db, const char *dbfile); int _alpm_db_open(pmdb_t *db); void _alpm_db_close(pmdb_t *db); -void _alpm_db_rewind(pmdb_t *db); pmpkg_t *_alpm_db_scan(pmdb_t *db, const char *target); int _alpm_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq); int _alpm_db_write(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq); int _alpm_db_remove(pmdb_t *db, pmpkg_t *info); -time_t _alpm_db_getlastupdate(const pmdb_t *db); -int _alpm_db_setlastupdate(const pmdb_t *db, time_t time); #endif /* _ALPM_DB_H */ |