summaryrefslogtreecommitdiff
path: root/src/Handle.cc
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-12-11 23:37:19 -0800
committerPixel <pixel@nobis-crew.org>2011-12-11 23:37:23 -0800
commit600e7af66ad53f83fe61a907161e8b295603b83e (patch)
tree583d5473bd1b68366e39b3b7073d51b09e99f0bb /src/Handle.cc
parent69efca1a157245b35cd80a09718f45b30412dcea (diff)
Introducing EAssert for 'Execution Assert', which won't stop the application, and will replace a bunch of RAssert around the code.
Diffstat (limited to 'src/Handle.cc')
-rw-r--r--src/Handle.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Handle.cc b/src/Handle.cc
index f3444d6..dacd30d 100644
--- a/src/Handle.cc
+++ b/src/Handle.cc
@@ -241,7 +241,7 @@ static int eioDone(eio_req * req) {
int Balau::FileSystem::mkdir(const char * path) throw (GeneralException) {
cbResults_t cbResults;
eio_req * r = eio_mkdir(path, 0755, 0, eioDone, &cbResults);
- RAssert(r != NULL, "eio_mkdir returned a NULL eio_req");
+ EAssert(r != NULL, "eio_mkdir returned a NULL eio_req");
Task::yield(&cbResults.evt);
char str[4096];