summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schanda <schanda@itestra.de>2013-08-07 16:36:26 +0200
committerJohannes Schanda <schanda@itestra.de>2013-08-07 16:36:26 +0200
commit3fbd89e074ce114d01e5668201c14bf1ffc0594d (patch)
treea972bbd908e6db35bec31c8ca6a07d736ab5c83e
parent1261885b117c7cc51258bed0ebde842f69b9feb6 (diff)
downloadgenivi-common-api-dbus-runtime-3fbd89e074ce114d01e5668201c14bf1ffc0594d.tar.gz
Corrected comments with regard to mainloop integration
-rw-r--r--src/test/commonapi/tests/TestInterfaceProxy.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/test/commonapi/tests/TestInterfaceProxy.h b/src/test/commonapi/tests/TestInterfaceProxy.h
index 7ab5cdc..88dfde1 100644
--- a/src/test/commonapi/tests/TestInterfaceProxy.h
+++ b/src/test/commonapi/tests/TestInterfaceProxy.h
@@ -34,7 +34,6 @@ class TestInterfaceProxy: virtual public TestInterface, virtual public TestInter
* The CallStatus will be filled when the method returns and indicate either
* "SUCCESS" or which type of error has occurred. In case of an error, ONLY the CallStatus
* will be set.
- * Synchronous calls are not supported (will block indefinitely) when mainloop integration is used.
*/
virtual void testEmptyMethod(CommonAPI::CallStatus& callStatus);
/**
@@ -56,7 +55,6 @@ class TestInterfaceProxy: virtual public TestInterface, virtual public TestInter
* The CallStatus will be filled when the method returns and indicate either
* "SUCCESS" or which type of error has occurred. In case of an error, ONLY the CallStatus
* will be set.
- * Synchronous calls are not supported (will block indefinitely) when mainloop integration is used.
*/
virtual void testVoidPredefinedTypeMethod(const uint32_t& uint32Value, const std::string& stringValue, CommonAPI::CallStatus& callStatus);
/**
@@ -79,7 +77,6 @@ class TestInterfaceProxy: virtual public TestInterface, virtual public TestInter
* The CallStatus will be filled when the method returns and indicate either
* "SUCCESS" or which type of error has occurred. In case of an error, ONLY the CallStatus
* will be set.
- * Synchronous calls are not supported (will block indefinitely) when mainloop integration is used.
*/
virtual void testPredefinedTypeMethod(const uint32_t& uint32InValue, const std::string& stringInValue, CommonAPI::CallStatus& callStatus, uint32_t& uint32OutValue, std::string& stringOutValue);
/**
@@ -101,7 +98,6 @@ class TestInterfaceProxy: virtual public TestInterface, virtual public TestInter
* The CallStatus will be filled when the method returns and indicate either
* "SUCCESS" or which type of error has occurred. In case of an error, ONLY the CallStatus
* will be set.
- * Synchronous calls are not supported (will block indefinitely) when mainloop integration is used.
*/
virtual void testVoidDerivedTypeMethod(const DerivedTypeCollection::TestEnumExtended2& testEnumExtended2Value, const DerivedTypeCollection::TestMap& testMapValue, CommonAPI::CallStatus& callStatus);
/**
@@ -124,7 +120,6 @@ class TestInterfaceProxy: virtual public TestInterface, virtual public TestInter
* The CallStatus will be filled when the method returns and indicate either
* "SUCCESS" or which type of error has occurred. In case of an error, ONLY the CallStatus
* will be set.
- * Synchronous calls are not supported (will block indefinitely) when mainloop integration is used.
*/
virtual void testDerivedTypeMethod(const DerivedTypeCollection::TestEnumExtended2& testEnumExtended2InValue, const DerivedTypeCollection::TestMap& testMapInValue, CommonAPI::CallStatus& callStatus, DerivedTypeCollection::TestEnumExtended2& testEnumExtended2OutValue, DerivedTypeCollection::TestMap& testMapOutValue);
/**