1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

reduce wasted memory on 64bit systems, 32bit has no change

svn path=/icecast/trunk/avl/; revision=14308
This commit is contained in:
Karl Heyes 2007-12-15 17:51:33 +00:00
parent 73401b80d5
commit 0e533ac490

View File

@ -12,7 +12,7 @@ extern "C" {
#endif
#ifndef NO_THREAD
#include <thread/thread.h>
#include "thread/thread.h"
#else
#define thread_rwlock_create(x) do{}while(0)
#define thread_rwlock_destroy(x) do{}while(0)
@ -31,7 +31,7 @@ typedef struct avl_node_tag {
* factor: 00==-1, 01==0, 10==+1.
* The rest of the bits are used for <rank>
*/
unsigned long rank_and_balance;
unsigned int rank_and_balance;
#ifndef NO_THREAD
rwlock_t rwlock;
#endif
@ -92,8 +92,8 @@ typedef int (*avl_key_printer_fun_type) (char *, void *);
typedef struct _avl_tree {
avl_node * root;
unsigned long height;
unsigned long length;
unsigned int height;
unsigned int length;
avl_key_compare_fun_type compare_fun;
void * compare_arg;
#ifndef NO_THREAD