X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fhash-functions.c;h=a72ee06e185e8171efe4f50270215af4ac340943;hb=49239dc60d3bfe5a29b6f08b176783dd72804d91;hp=f9f1f0e165ef2db3801a65890ba7c9798aacda8c;hpb=2c411d651e22704f60f117d944b9380a07d247fe;p=pspp-builds.git diff --git a/src/libpspp/hash-functions.c b/src/libpspp/hash-functions.c index f9f1f0e1..a72ee06e 100644 --- a/src/libpspp/hash-functions.c +++ b/src/libpspp/hash-functions.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2008, 2009 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2008, 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -172,3 +172,12 @@ hash_double (double d, unsigned int basis) return hash_bytes (&d, sizeof d, basis); #endif /* SIZEOF_DOUBLE != 8 */ } + +/* Returns a hash value for pointer P, starting from BASIS. */ +unsigned int +hash_pointer (const void *p, unsigned int basis) +{ + /* Casting to uintptr_t before casting to int suppresses a GCC warning about + on 64-bit platforms. */ + return hash_int ((int) (uintptr_t) p, basis); +}