summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Pushed to version 1.3.0HEADmasterTimo Dritschler2015-06-162-9/+40
| | | | | Highlights: - KiroSb: Added kiro_sb_get_dma_pointer interface
* Changed gi.introspection handling for pointers to and from KIROTimo Dritschler2015-04-153-16/+23
|
* Fixed a bug in KiroSbTimo Dritschler2015-04-152-6/+8
| | | | | Removed a debugging statement which was causing the KiroSb to sync permanently Added gi.introspection annotations to some of the KiroSb documentation
* Heavily changed cmake build scriptsTimo Dritschler2015-04-144-8/+162
| | | | Added gi-introspection module to build chain
* Made all in-source documentation Gtk-Doc conformantTimo Dritschler2015-04-109-228/+207
|
* Fixed an issue in kiro_sb_push and kiro_sb_push_dmaTimo Dritschler2015-03-301-2/+2
|
* Added new optional address and port paramters to kiro_sb_serveTimo Dritschler2015-03-302-4/+14
|
* Fixed KIRO Client allocating new memory on each ACK_RDMA messageTimo Dritschler2015-03-091-12/+17
|
* Added kiro_sb_get_data_blocking interfaceTimo Dritschler2015-03-092-14/+62
|
* Finished implementation of KiroSyncBuffer classTimo Dritschler2015-03-092-28/+306
|
* Added new "Kiro Sync Buffer" (KiroSb) class.Timo Dritschler2015-03-094-5/+408
| | | | | Added first prototype implementation of KiroSb Fixed some typos
* Fixed a bug with kiro_trb_get_element returning the wrong addressTimo Dritschler2015-02-092-7/+13
| | | | Changed kiro_trb_get_element interface to allow negative element indices
* Added new kiro_client_sync_partial interfaceTimo Dritschler2015-02-062-7/+58
|
* Added missing cleanup for GIOChannel GSources to client main loopTimo Dritschler2015-02-061-20/+34
|
* Fixed race conditions in kiro_server_reallocTimo Dritschler2015-01-303-86/+219
| | | | KIRO client now reacts to server realloc
* KIRO Server can now issue a client reallocation commandTimo Dritschler2015-01-263-9/+164
|
* Fixed a bug in KiroClient when connection fails during setupTimo Dritschler2015-01-213-14/+36
| | | | | Added early-out functionality to all KIRO interfaces to prevent segfaults when passing a NULL pointer
* Fixed broken pkgconfig fileTimo Dritschler2014-12-101-4/+4
|
* Added a missing pointer cleanupTimo Dritschler2014-12-101-0/+1
|
* Fixed KIRO client getting stuck in the RDMA event handlerTimo Dritschler2014-12-104-15/+183
| | | | | | Fix #8: KIRO Server and Client now have routines to handle async communication Fix #6: Added kiro_client_ping_server and respective event handling to server Changed kiro-test-latency to use the new kiro_client_ping_server instead
* Fixed a problem with the kiro server getting stuck in the RDMA event handlerTimo Dritschler2014-12-051-2/+9
|
* Fixed a race condition concerning message handling in kiro clientTimo Dritschler2014-12-041-5/+5
|
* KIRO Server now has a message event handler for receivesTimo Dritschler2014-12-033-31/+120
|
* Fixed a race condition in kiro_client_connectTimo Dritschler2014-12-031-15/+19
|
* KIRO Client now has a communication event handler for receivesTimo Dritschler2014-12-031-29/+74
|
* Fixed two memory leaks in kiro-serverTimo Dritschler2014-12-031-1/+19
|
* Changed a missed occurance of malloc to g_try_mallocTimo Dritschler2014-11-261-1/+1
|
* Merge branch 'master' into eventLoopsTimo Dritschler2014-11-263-11/+11
|\
| * Replaced all calls to malloc, calloc and free by their respective glib versionsTimo Dritschler2014-11-263-11/+11
| |
* | Merge branch 'master' into eventLoopsTimo Dritschler2014-11-262-18/+0
|\|
| * Removed superfluous memory allocations in kiro server and clientTimo Dritschler2014-11-262-18/+0
| |
* | Added a Main Loop model to kiro-clientTimo Dritschler2014-11-263-10/+133
| | | | | | | | | | Added kiro_client_disconnect function Added missing memory cleanup to kiro server and client upon shutdown
* | Changed kiro-server to use a Main Loop model for event handlingTimo Dritschler2014-11-261-55/+89
|/
* Fix #1: Added missing documentation to TRB, Client and Server headerTimo Dritschler2014-11-216-21/+173
| | | | | Fixed build warnings Fixed a bug in kiro-test-bandwidth
* Fix #7: Added missing call to parent finalizeTimo Dritschler2014-11-213-0/+5
|
* Fix #5: Changed build process to use ConfigurePaths instead of static pathsTimo Dritschler2014-11-211-2/+3
|
* Release KIRO to GitHub under LGPL v2.1Timo Dritschler2014-11-206-22/+55
| | | | | | | Added kiro_*_free methods to all three units Added installation guide Added readme Added licence file
* Fixed a bug in RDMA memory allocation (Size information was missing)Timo2014-09-302-3/+5
| | | | Added test-latency and test-bandwith tests
* Changed kiro_cient_connect parameters to constTimo Dritschler2014-09-192-3/+2
|
* Fixed a problem in KIRO Client "sync" functionTimo Dritschler2014-08-291-5/+27
| | | | | KIRO Client was ignoring broken connections and bad RDMA access keys Made test-client application check kiro_client_sync return value
* Changed error loging to use the respective GLib functionsTimo Dritschler2014-08-292-51/+53
| | | | Also fixes #2
* Fix #6: Changed coding style to match UFO ProjectTimo Dritschler2014-08-297-519/+566
|
* Fix #5: Added kiro_CLASS_new methods to all KIRO classesTimo Dritschler2014-08-286-5/+23
| | | | Changed test software to use the new kiro_CLASS_new functions
* KIRO Server now sends a disconnect request to all clients upon shutdownTimo Dritschler2014-08-281-5/+14
|
* KIRO Server now maintains a list of all connected clientsTimo Dritschler2014-08-282-30/+24
| | | | Removed kiro_connected structure from kiro-rdma.h as it is no longer needed
* Changed CMake build to exclude test binaries if SDL library is not installedTimo Dritschler2014-08-151-1/+1
|
* Removed superfluous mutex to prevent deadlock situationsTimo Dritschler2014-07-251-9/+2
|
* Added 'kiro_server_stop' method to KIRO ServerTimo Dritschler2014-07-252-29/+73
| | | | | Added missing cleanup to kiro_server_finalize Added missing cleanup to test-server
* Changed gobject initialization for backward compatibility with older ↵Timo Dritschler2014-07-183-3/+6
| | | | versions of GLib
* Fixed possible segfault due to missing cleanup of event listener threadTimo Dritschler2014-07-011-1/+4
|