summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-08-08 16:01:58 +0200
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-08-08 16:01:58 +0200
commita8b410e66c3c75809c8e9c01dd3e35c579f02347 (patch)
tree7af63906dce0216f86e5ff0767efaddfd6492cfd /include
parent0b5cc026fbe7ccc6de66907be29471562a2d344d (diff)
lockfree interaction patter for 3 theads implemented
Diffstat (limited to 'include')
-rw-r--r--include/zmq.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/zmq.hpp b/include/zmq.hpp
index ccc234d..004706b 100644
--- a/include/zmq.hpp
+++ b/include/zmq.hpp
@@ -38,7 +38,7 @@ namespace zmq
message_delimiter = 1 << ZMQ_DELIMITER
};
- class no_memory : public exception
+ class no_memory : public std::exception
{
virtual const char *what ()
{
@@ -46,7 +46,7 @@ namespace zmq
}
};
- class invalid_argument : public exception
+ class invalid_argument : public std::exception
{
virtual const char *what ()
{
@@ -54,7 +54,7 @@ namespace zmq
}
};
- class too_many_threads : public exception
+ class too_many_threads : public std::exception
{
virtual const char *what ()
{
@@ -62,7 +62,7 @@ namespace zmq
}
};
- class address_in_use : public exception
+ class address_in_use : public std::exception
{
virtual const char *what ()
{