From c047077911bbb6acd32eba46ee9296ca20b1e6f5 Mon Sep 17 00:00:00 2001
From: "Nicolas \"Pixel\" Noble" <pixel@nobis-crew.org>
Date: Sat, 4 Jan 2014 01:07:01 -0800
Subject: Removing "big endian" 8-bits reads, and updating libev to fix win32
 deadlock.

---
 includes/Handle.h | 2 --
 libev             | 2 +-
 src/Handle.cc     | 2 --
 3 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/includes/Handle.h b/includes/Handle.h
index 176f4bb..ba710b2 100644
--- a/includes/Handle.h
+++ b/includes/Handle.h
@@ -76,11 +76,9 @@ class Handle {
     Future<int16_t>  readI16();
     Future<int32_t>  readI32();
     Future<int64_t>  readI64();
-	Future<uint8_t>  readBEU8();
 	Future<uint16_t> readBEU16();
 	Future<uint32_t> readBEU32();
 	Future<uint64_t> readBEU64();
-	Future<int8_t>   readBEI8();
 	Future<int16_t>  readBEI16();
 	Future<int32_t>  readBEI32();
 	Future<int64_t>  readBEI64();
diff --git a/libev b/libev
index 3a472fb..3f5d360 160000
--- a/libev
+++ b/libev
@@ -1 +1 @@
-Subproject commit 3a472fbe68ce79f79953d1acf0616c0af0dda390
+Subproject commit 3f5d360b8421502a2e933211d9463b74d27bb7e0
diff --git a/src/Handle.cc b/src/Handle.cc
index 79b81c8..0d1fb15 100644
--- a/src/Handle.cc
+++ b/src/Handle.cc
@@ -138,11 +138,9 @@ Balau::Future<int16_t>  Balau::Handle::readI16() { return genericRead<int16_t> (
 Balau::Future<int32_t>  Balau::Handle::readI32() { return genericRead<int32_t> (this); }
 Balau::Future<int64_t>  Balau::Handle::readI64() { return genericRead<int64_t> (this); }
 
-Balau::Future<uint8_t>  Balau::Handle::readBEU8()  { return genericReadBE<uint8_t> (this); }
 Balau::Future<uint16_t> Balau::Handle::readBEU16() { return genericReadBE<uint16_t>(this); }
 Balau::Future<uint32_t> Balau::Handle::readBEU32() { return genericReadBE<uint32_t>(this); }
 Balau::Future<uint64_t> Balau::Handle::readBEU64() { return genericReadBE<uint64_t>(this); }
-Balau::Future<int8_t>   Balau::Handle::readBEI8()  { return genericReadBE<int8_t>  (this); }
 Balau::Future<int16_t>  Balau::Handle::readBEI16() { return genericReadBE<int16_t> (this); }
 Balau::Future<int32_t>  Balau::Handle::readBEI32() { return genericReadBE<int32_t> (this); }
 Balau::Future<int64_t>  Balau::Handle::readBEI64() { return genericReadBE<int64_t> (this); }
-- 
cgit v1.2.3