diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-10 20:40:01 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-10 20:40:01 +0000 |
commit | b76802f5349f9b9be2e0dcf5948c4c7a2fa57d98 (patch) | |
tree | 03f0ed5677855565b422acbe00d0eaecf1741528 /ext/DB_File | |
parent | 0672f40ebb7f0cdf6045545c3680ba955a0cd920 (diff) | |
download | perl-b76802f5349f9b9be2e0dcf5948c4c7a2fa57d98.tar.gz |
DB_File tweaks for IMPLICIT CONTEXT
p4raw-id: //depot/perl@3529
Diffstat (limited to 'ext/DB_File')
-rw-r--r-- | ext/DB_File/DB_File.xs | 67 | ||||
-rw-r--r-- | ext/DB_File/typemap | 2 |
2 files changed, 20 insertions, 49 deletions
diff --git a/ext/DB_File/DB_File.xs b/ext/DB_File/DB_File.xs index cdadf29068..be584a2ce6 100644 --- a/ext/DB_File/DB_File.xs +++ b/ext/DB_File/DB_File.xs @@ -352,12 +352,7 @@ static DBTKEY empty ; #ifdef DB_VERSION_MAJOR static int -db_put(db, key, value, flags) -DB_File db ; -DBTKEY key ; -DBT value ; -u_int flags ; - +db_put(DB_File db, DBTKEY key, DBT value, u_int flags) { int status ; @@ -381,7 +376,7 @@ u_int flags ; #endif /* DB_VERSION_MAJOR */ static void -GetVersionInfo() +GetVersionInfo(pTHX) { SV * ver_sv = perl_get_sv("DB_File::db_version", TRUE) ; #ifdef DB_VERSION_MAJOR @@ -412,10 +407,9 @@ GetVersionInfo() static int -btree_compare(key1, key2) -const DBT * key1 ; -const DBT * key2 ; +btree_compare(const DBT *key1, const DBT *key2) { + dTHX; dSP ; void * data1, * data2 ; int retval ; @@ -459,10 +453,9 @@ const DBT * key2 ; } static DB_Prefix_t -btree_prefix(key1, key2) -const DBT * key1 ; -const DBT * key2 ; +btree_prefix(const DBT *key1, const DBT *key2) { + dTHX; dSP ; void * data1, * data2 ; int retval ; @@ -506,10 +499,9 @@ const DBT * key2 ; } static DB_Hash_t -hash_cb(data, size) -const void * data ; -size_t size ; +hash_cb(const void *data, size_t size) { + dTHX; dSP ; int retval ; int count ; @@ -546,8 +538,7 @@ size_t size ; #ifdef TRACE static void -PrintHash(hash) -INFO * hash ; +PrintHash(INFO *hash) { printf ("HASH Info\n") ; printf (" hash = %s\n", @@ -561,8 +552,7 @@ INFO * hash ; } static void -PrintRecno(recno) -INFO * recno ; +PrintRecno(INFO *recno) { printf ("RECNO Info\n") ; printf (" flags = %d\n", recno->db_RE_flags) ; @@ -575,8 +565,7 @@ INFO * recno ; } static void -PrintBtree(btree) -INFO * btree ; +PrintBtree(INFO *btree) { printf ("BTREE Info\n") ; printf (" compare = %s\n", @@ -603,8 +592,7 @@ INFO * btree ; static I32 -GetArrayLength(db) -DB_File db ; +GetArrayLength(pTHX_ DB_File db) { DBT key ; DBT value ; @@ -622,13 +610,11 @@ DB_File db ; } static recno_t -GetRecnoKey(db, value) -DB_File db ; -I32 value ; +GetRecnoKey(pTHX_ DB_File db, I32 value) { if (value < 0) { /* Get the length of the array */ - I32 length = GetArrayLength(db) ; + I32 length = GetArrayLength(aTHX_ db) ; /* check for attempt to write before start of array */ if (length + value + 1 <= 0) @@ -643,12 +629,7 @@ I32 value ; } static DB_File -ParseOpenInfo(isHASH, name, flags, mode, sv) -int isHASH ; -char * name ; -int flags ; -int mode ; -SV * sv ; +ParseOpenInfo(pTHX_ int isHASH, char *name, int flags, int mode, SV *sv) { SV ** svp; HV * action ; @@ -917,18 +898,8 @@ SV * sv ; } -static int -not_here(s) -char *s; -{ - croak("DB_File::%s not implemented on this architecture", s); - return -1; -} - static double -constant(name, arg) -char *name; -int arg; +constant(char *name, int arg) { errno = 0; switch (*name) { @@ -1161,7 +1132,7 @@ MODULE = DB_File PACKAGE = DB_File PREFIX = db_ BOOT: { - GetVersionInfo() ; + GetVersionInfo(aTHX) ; empty.data = &zero ; empty.size = sizeof(recno_t) ; @@ -1192,7 +1163,7 @@ db_DoTie_(isHASH, dbtype, name=undef, flags=O_CREAT|O_RDWR, mode=0666, type=DB_H if (items == 6) sv = ST(5) ; - RETVAL = ParseOpenInfo(isHASH, name, flags, mode, sv) ; + RETVAL = ParseOpenInfo(aTHX_ isHASH, name, flags, mode, sv) ; if (RETVAL->dbp == NULL) RETVAL = NULL ; } @@ -1465,7 +1436,7 @@ length(db) ALIAS: FETCHSIZE = 1 CODE: CurrentDB = db ; - RETVAL = GetArrayLength(db) ; + RETVAL = GetArrayLength(aTHX_ db) ; OUTPUT: RETVAL diff --git a/ext/DB_File/typemap b/ext/DB_File/typemap index 29dc778df7..8e4dacbdd0 100644 --- a/ext/DB_File/typemap +++ b/ext/DB_File/typemap @@ -22,7 +22,7 @@ T_dbtkeydatum DBT_flags($var); } else { - Value = GetRecnoKey(db, SvIV($arg)) ; + Value = GetRecnoKey(aTHX_ db, SvIV($arg)) ; $var.data = & Value; $var.size = (int)sizeof(recno_t); DBT_flags($var); |