Shave some bytes off struct bytes_tree

This brings it down from 120 to 112 bytes for me.
parent f5c724ee
...@@ -34,6 +34,8 @@ ...@@ -34,6 +34,8 @@
struct bytes_tree { struct bytes_tree {
unsigned magic; unsigned magic;
#define BYTES_TREE_MAGIC 0x49c59d46 #define BYTES_TREE_MAGIC 0x49c59d46
int retval;
struct lock tree_lock; struct lock tree_lock;
// esi_level > 1 signalling new data // esi_level > 1 signalling new data
pthread_cond_t cond; pthread_cond_t cond;
...@@ -45,7 +47,6 @@ struct bytes_tree { ...@@ -45,7 +47,6 @@ struct bytes_tree {
struct node *end; struct node *end;
int end_sent; int end_sent;
int npending; int npending;
int retval;
}; };
enum n_type { enum n_type {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment