From c047077911bbb6acd32eba46ee9296ca20b1e6f5 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" 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 readI16(); Future readI32(); Future readI64(); - Future readBEU8(); Future readBEU16(); Future readBEU32(); Future readBEU64(); - Future readBEI8(); Future readBEI16(); Future readBEI32(); Future 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 Balau::Handle::readI16() { return genericRead ( Balau::Future Balau::Handle::readI32() { return genericRead (this); } Balau::Future Balau::Handle::readI64() { return genericRead (this); } -Balau::Future Balau::Handle::readBEU8() { return genericReadBE (this); } Balau::Future Balau::Handle::readBEU16() { return genericReadBE(this); } Balau::Future Balau::Handle::readBEU32() { return genericReadBE(this); } Balau::Future Balau::Handle::readBEU64() { return genericReadBE(this); } -Balau::Future Balau::Handle::readBEI8() { return genericReadBE (this); } Balau::Future Balau::Handle::readBEI16() { return genericReadBE (this); } Balau::Future Balau::Handle::readBEI32() { return genericReadBE (this); } Balau::Future Balau::Handle::readBEI64() { return genericReadBE (this); } -- cgit v1.2.3