re PR libobjc/19024 (name collisions libobjc/libmysqlclient)
2005-03-02 David Ayers <d.ayers@inode.at>
PR libobjc/19024
* Makefile.in (OBJS): Add hash_compat.lo.
(OBJS_GC): Add hash_compat_gc.lo.
(hash_compat_gc.lo): New target and rule.
* objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
(hash_next, hash_value_for_key, hash_is_key_in_hash)
(hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
with objc_. Add deprecated non prefixed inlined versions.
(OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
declarations.
* hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
(hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
update callers.
* hash_compat.c: New file.
* archive.c: Update callers.
* init.c: Likewise.
* selector.c: Likewise.
* libobjc.def: Add objc_ versions of hash functions.
From-SVN: r95793
2005-03-03 03:37:03 +08:00
|
|
|
/* Binary compatibility hash implementations for Objective C.
|
|
|
|
Copyright (C) 2005 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
This file is part of GCC.
|
|
|
|
|
|
|
|
GCC is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
GCC is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GCC; see the file COPYING. If not, write to
|
2005-08-17 11:21:42 +08:00
|
|
|
the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
re PR libobjc/19024 (name collisions libobjc/libmysqlclient)
2005-03-02 David Ayers <d.ayers@inode.at>
PR libobjc/19024
* Makefile.in (OBJS): Add hash_compat.lo.
(OBJS_GC): Add hash_compat_gc.lo.
(hash_compat_gc.lo): New target and rule.
* objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
(hash_next, hash_value_for_key, hash_is_key_in_hash)
(hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
with objc_. Add deprecated non prefixed inlined versions.
(OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
declarations.
* hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
(hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
update callers.
* hash_compat.c: New file.
* archive.c: Update callers.
* init.c: Likewise.
* selector.c: Likewise.
* libobjc.def: Add objc_ versions of hash functions.
From-SVN: r95793
2005-03-03 03:37:03 +08:00
|
|
|
|
|
|
|
/* As a special exception, if you link this library with files
|
|
|
|
compiled with GCC to produce an executable, this does not cause
|
|
|
|
the resulting executable to be covered by the GNU General Public License.
|
|
|
|
This exception does not however invalidate any other reasons why
|
|
|
|
the executable file might be covered by the GNU General Public License. */
|
|
|
|
|
|
|
|
#define OBJC_IGNORE_DEPRECATED_API 1
|
archive.c, [...]: Include hash.h.
2005-06-07 David Ayers <d.ayers@inode.at>
* archive.c, init.c, selector.c: Include hash.h.
* archive.c, class.c, encoding.c, gc.c, hash.c, hash_compat.c,
init.c, misc.c, nil_method.c, objects.c, sarray.c, selector.c,
sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c, thr-mach.c,
thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c, thr-rtems.c,
thr-single.c, thr-solaris.c, thr-vxworks.c, thr-win32.c, thr.c:
Include Objective-C headers with quotes and objc/ directory
prefix.
From-SVN: r100723
2005-06-08 05:04:19 +08:00
|
|
|
#include "objc/hash.h"
|
re PR libobjc/19024 (name collisions libobjc/libmysqlclient)
2005-03-02 David Ayers <d.ayers@inode.at>
PR libobjc/19024
* Makefile.in (OBJS): Add hash_compat.lo.
(OBJS_GC): Add hash_compat_gc.lo.
(hash_compat_gc.lo): New target and rule.
* objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
(hash_next, hash_value_for_key, hash_is_key_in_hash)
(hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
with objc_. Add deprecated non prefixed inlined versions.
(OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
declarations.
* hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
(hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
update callers.
* hash_compat.c: New file.
* archive.c: Update callers.
* init.c: Likewise.
* selector.c: Likewise.
* libobjc.def: Add objc_ versions of hash functions.
From-SVN: r95793
2005-03-03 03:37:03 +08:00
|
|
|
|
|
|
|
cache_ptr
|
|
|
|
hash_new (unsigned int size,
|
|
|
|
hash_func_type hash_func,
|
|
|
|
compare_func_type compare_func)
|
|
|
|
{
|
|
|
|
return objc_hash_new(size, hash_func, compare_func);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
hash_delete(cache_ptr cache)
|
|
|
|
{
|
|
|
|
objc_hash_delete(cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
hash_add (cache_ptr *cachep, const void *key, void *value)
|
|
|
|
{
|
|
|
|
objc_hash_add(cachep, key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
hash_remove (cache_ptr cache, const void *key)
|
|
|
|
{
|
|
|
|
objc_hash_remove (cache, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
node_ptr
|
|
|
|
hash_next (cache_ptr cache, node_ptr node)
|
|
|
|
{
|
|
|
|
return objc_hash_next (cache, node);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
hash_value_for_key (cache_ptr cache, const void *key)
|
|
|
|
{
|
|
|
|
return objc_hash_value_for_key (cache, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL
|
|
|
|
hash_is_key_in_hash (cache_ptr cache, const void *key)
|
|
|
|
{
|
|
|
|
return objc_hash_is_key_in_hash (cache, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
hash_ptr (cache_ptr cache, const void *key)
|
|
|
|
{
|
|
|
|
return objc_hash_ptr (cache, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
hash_string (cache_ptr cache, const void *key)
|
|
|
|
{
|
|
|
|
return objc_hash_string (cache, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
compare_ptrs (const void *k1, const void *k2)
|
|
|
|
{
|
|
|
|
return objc_compare_ptrs (k1, k2);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
compare_strings (const void *k1, const void *k2)
|
|
|
|
{
|
|
|
|
return objc_compare_strings (k1, k2);
|
|
|
|
}
|
|
|
|
|