From b0e4ebbbf2a3235077c6d607ef881b6791597087 Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Mon, 3 Dec 2007 00:52:05 +0000 Subject: Simplify includes --- ot_clean.c | 2 ++ ot_clean.h | 2 -- ot_iovec.h | 2 -- ot_mutex.c | 2 ++ ot_sync.c | 9 +++++++-- ot_vector.h | 2 -- 6 files changed, 11 insertions(+), 8 deletions(-) diff --git a/ot_clean.c b/ot_clean.c index e8d2841..308c848 100644 --- a/ot_clean.c +++ b/ot_clean.c @@ -5,9 +5,11 @@ #include #include #include +#include /* Libowfat */ #include "byte.h" +#include "io.h" /* Opentracker */ #include "trackerlogic.h" diff --git a/ot_clean.h b/ot_clean.h index 73dcd10..8ad1ae8 100644 --- a/ot_clean.h +++ b/ot_clean.h @@ -4,8 +4,6 @@ #ifndef __OT_CLEAN_H__ #define __OT_CLEAN_H__ -#include "trackerlogic.h" - void clean_init( void ); void clean_deinit( void ); diff --git a/ot_iovec.h b/ot_iovec.h index d52a167..d7105bd 100644 --- a/ot_iovec.h +++ b/ot_iovec.h @@ -4,8 +4,6 @@ #ifndef __OT_IOVEC_H__ #define __OT_IOVEC_H__ -#include - void *iovec_increase( int *iovec_entries, struct iovec **iovector, size_t new_alloc ); void iovec_fixlast( int *iovec_entries, struct iovec **iovector, void *last_ptr ); void iovec_free( int *iovec_entries, struct iovec **iovector ); diff --git a/ot_mutex.c b/ot_mutex.c index fb632d7..6bcaf12 100644 --- a/ot_mutex.c +++ b/ot_mutex.c @@ -6,9 +6,11 @@ #include #include #include +#include /* Libowfat */ #include "byte.h" +#include "io.h" /* Opentracker */ #include "trackerlogic.h" diff --git a/ot_sync.c b/ot_sync.c index 6964098..ac1664d 100644 --- a/ot_sync.c +++ b/ot_sync.c @@ -4,6 +4,7 @@ /* System */ #include #include +#include #include #include #include @@ -11,11 +12,14 @@ /* Libowfat */ #include "scan.h" #include "byte.h" +#include "io.h" /* Opentracker */ #include "trackerlogic.h" #include "ot_mutex.h" #include "ot_sync.h" +#include "ot_stats.h" +#include "ot_iovec.h" #ifdef WANT_TRACKER_SYNC @@ -25,9 +29,9 @@ format: d4:syncd[..]ee [..]: ( 20:01234567890abcdefghij16:XXXXYYYY )+ */ -int add_changeset_to_tracker( ot_byte *data, size_t len ) { +int add_changeset_to_tracker( uint8_t *data, size_t len ) { ot_hash *hash; - ot_byte *end = data + len; + uint8_t *end = data + len; unsigned long peer_count; /* We do know, that the string is \n terminated, so it cant @@ -135,6 +139,7 @@ static void * sync_worker( void * args) { ot_tasktype tasktype = TASK_SYNC_OUT; ot_taskid taskid = mutex_workqueue_poptask( &tasktype ); sync_make( &iovec_entries, &iovector ); + stats_issue_event( EVENT_SYNC_OUT, 1, iovec_length( &iovec_entries, &iovector) ); if( mutex_workqueue_pushresult( taskid, iovec_entries, iovector ) ) iovec_free( &iovec_entries, &iovector ); } diff --git a/ot_vector.h b/ot_vector.h index 0f68488..ed235a3 100644 --- a/ot_vector.h +++ b/ot_vector.h @@ -4,8 +4,6 @@ #ifndef __OT_VECTOR_H__ #define __OT_VECTOR_H__ -#include "trackerlogic.h" - /* These defines control vectors behaviour */ #define OT_VECTOR_MIN_MEMBERS 4 #define OT_VECTOR_GROW_RATIO 8 -- cgit v1.2.3