summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Updated TODOPhilip Rauwolf2013-03-201-4/+15
| |
| * Moved two declarations to more sensible place and changed order ofPhilip Rauwolf2013-03-202-5/+4
| | | | | | execution in DBusConnection->disconnect.
| * Added (commented) test for suspending the dispatch-thread withinPhilip Rauwolf2013-03-202-3/+90
| | | | | | | | | | DBusConnection to DBusCommunicationTest. Commented, because two functions in DBusConnection need to be made public for this test to execute. Also removed unused variable in DBusConnectionTest.
| * Increased responsiveness of DBusServiceRegistryPhilip Rauwolf2013-03-201-15/+14
| |
| * Bugfix: Prevented concurrent modification within DBusObjectManagerPhilip Rauwolf2013-03-202-4/+16
| |
| * Added description and usage of D-Bus address config files to READMEPhilip Rauwolf2013-03-201-6/+48
| |
| * Improved timing and responsiveness of several tests.Philip Rauwolf2013-03-197-35/+71
| |
| * Added a return of "false" if the dbus connection name could not bePhilip Rauwolf2013-03-191-13/+15
| | | | | | accquired.
| * Prevented independent double instantiation of DBusObjectManager andPhilip Rauwolf2013-03-192-8/+18
| | | | | | | | | | DBusServiceRegistry within the DBusConnection. Also prevented access to the not-yet-instantiated DBusObjectManager member variable of DBusConnection when an external call arrives "too early".
| * Added mechanism to suspend dispatching while some blocking call isPhilip Rauwolf2013-03-182-5/+53
| | | | | | underway.
| * Improved semantics of python fake legacy servicePhilip Rauwolf2013-03-181-7/+17
| |
| * Eliminated unnecessary mutex in ServiceRegistry (obsolete since lockingPhilip Rauwolf2013-03-141-2/+2
| | | | | | also happens in Event.h, rarely even led to deadlocks)
| * Fixed bug that allowed the destructor of a proxy to access invalid2.0.1Philip Rauwolf2013-03-136-95/+115
| | | | | | memory, thus causing segfaults
| * Small corrections in some testsPhilip Rauwolf2013-03-124-30/+28
| |
| * Increased responsiveness of "isAvailableBlocking" by lowering thePhilip Rauwolf2013-03-121-2/+1
| | | | | | timeout from 100ms to 2ms
| * Updated TODOPhilip Rauwolf2013-03-121-90/+6
| |
| * Updated DBusConnectionTest to current version of CommonAPI, integratedPhilip Rauwolf2013-03-123-145/+234
| | | | | | it into current test suite
| * add libtool version-info supportAleksandar Kanchev2013-03-121-0/+8
| |
| * Improved timing in MultipleConnectionTestPhilip Rauwolf2013-03-111-3/+8
| |
| * Prevented dispatch mechanism from returning into an undefinedPhilip Rauwolf2013-03-112-17/+13
| | | | | | (already destructed) environment.
| * DBusConnection: Removed unused variable, enabled safe double deletion ofPhilip Rauwolf2013-03-112-23/+19
| | | | | | signal handlers.
* | Merge branch 'master' into genivi_releasegenivi_release_32.0.0Johannes Schanda2013-03-071-1/+1
|\ \ | |/
| * Set version 2.0 in package versionJohannes Schanda2013-03-071-1/+1
| |
* | Merge branch 'master' into genivi_releaseJohannes Schanda2013-03-0777-3086/+5132
|\ \ | |/ | | | | | | Conflicts: TODO
| * Fix two rare segfaults in connection signal and disconnect,gpt_6_1_preJohannes Schanda2013-03-063-1/+7
| | | | | | | | improve timing in multiple connection test
| * Removed another potential deadlock that happened during construction ofPhilip Rauwolf2013-03-061-0/+1
| | | | | | the serviceRegistry
| * Fixed rare deadlock at resolution of non-available services.Philip Rauwolf2013-03-052-25/+24
| |
| * Fixed the previous fix, as it still was possible for a callback-objectPhilip Rauwolf2013-03-051-26/+28
| | | | | | to operate on a nulled pointer to the stub.
| * Prevented stub from being destroyed while messages are being handled.Philip Rauwolf2013-03-051-1/+3
| |
| * Removed dead codePhilip Rauwolf2013-03-051-3/+0
| |
| * "Remote Errors" now are actually forwarded as suchPhilip Rauwolf2013-03-042-4/+8
| |
| * Removed shared pointer that prevented destruction of other objectsPhilip Rauwolf2013-03-042-15/+21
| |
| * Prevented self-joining of the DBusConnection's dispatch thread onPhilip Rauwolf2013-03-042-12/+24
| | | | | | destruction
| * Removed debug messagePhilip Rauwolf2013-03-011-1/+0
| |
| * Fixed occasional deadlock that occurred when dbus connection gotPhilip Rauwolf2013-03-013-15/+21
| | | | | | destroyed
| * tests: extensive DBusServiceRegistry predefined instance testsAleksandar Kanchev2013-03-011-1/+170
| |
| * fix DBusServiceRegistry predefined services supportAleksandar Kanchev2013-03-012-50/+56
| |
| * Correct deregistration of services in testsPhilip Rauwolf2013-03-014-12/+18
| |
| * Moved service management down to middleware implementationPhilip Rauwolf2013-03-014-15/+39
| |
| * Corrected tests with regards to deregistration of servicesPhilip Rauwolf2013-02-284-12/+29
| |
| * Added a way to deinitialize running servicesPhilip Rauwolf2013-02-285-2/+18
| |
| * Small adaptions in test-cases for new dependency-structure aroundPhilip Rauwolf2013-02-282-26/+12
| | | | | | DBusConnection.
| * Removed the tests referring to the no longer existingPhilip Rauwolf2013-02-281-57/+3
| | | | | | ServiceStatusEvent, adapted remaining tests in ServiceRegistryTests
| * Removed ServiceStatusEvent from DBusServiceRegistry. Also removed anPhilip Rauwolf2013-02-282-21/+5
| | | | | | unused empty constructor.
| * Solved circular dependencies between DBusConnection andPhilip Rauwolf2013-02-288-63/+30
| | | | | | | | DBusServiceRegistry/DBusObjectManager, removed DBusDaemonProxy entirely from DBusConnection
| * Broke up circular dependency of DBusDaemonProxy and DBusConnectionPhilip Rauwolf2013-02-289-70/+113
| |
| * Address Translator rewrite to more efficient implementationJohannes Schanda2013-02-283-50/+59
| |
| * tests: Various timing fixesJohannes Schanda2013-02-283-2/+4
| |
| * Correct order of include pathsJohannes Schanda2013-02-281-3/+4
| |
| * correct getAvailableServiceInstances() wait logicAleksandar Kanchev2013-02-272-9/+15
| |