summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2014-01-04 01:07:01 -0800
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2014-01-04 01:07:01 -0800
commitc047077911bbb6acd32eba46ee9296ca20b1e6f5 (patch)
treed3f1f2043634fa89e499be1c7a80dc8c6dd74543
parent3c5892053869ed75168f78a68e49f1935a6ecef0 (diff)
Removing "big endian" 8-bits reads, and updating libev to fix win32 deadlock.
-rw-r--r--includes/Handle.h2
m---------libev0
-rw-r--r--src/Handle.cc2
3 files changed, 0 insertions, 4 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
-Subproject 3a472fbe68ce79f79953d1acf0616c0af0dda39
+Subproject 3f5d360b8421502a2e933211d9463b74d27bb7e
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); }