Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
spr0cketeer
Icecast-common
Commits
28fa4f56
Commit
28fa4f56
authored
Dec 15, 2007
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reduce wasted memory on 64bit systems, 32bit has no change
svn path=/icecast/trunk/avl/; revision=14308
parent
4d379b74
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
avl/avl.h
avl/avl.h
+4
-4
No files found.
avl/avl.h
View file @
28fa4f56
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment