Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert Dispatcher and MainDispatcher to GObjects | Jonathon Jongsma | 2015-02-23 | 1 | -25/+31 |
| | | | | | Allows more explicit inheritance relationship, and numerous other advantages. | ||||
* | add missing license headers to source files | Jonathon Jongsma | 2015-02-23 | 1 | -0/+17 |
| | |||||
* | server: rename files | Marc-André Lureau | 2015-02-23 | 1 | -2/+1 |
| | |||||
* | server: cleanups | Marc-André Lureau | 2015-02-23 | 1 | -1/+1 |
| | |||||
* | server: move dispatcher GSource handling code | Marc-André Lureau | 2015-01-09 | 1 | -0/+2 |
| | |||||
* | server: remove worker thread creation from dispatcher | Marc-André Lureau | 2015-01-09 | 1 | -0/+2 |
| | |||||
* | server/dispatcher: add extra_dispatcher, hack for red_record | Alon Levy | 2015-01-09 | 1 | -0/+8 |
| | |||||
* | server/dispatcher: pass message_type to callbacks for consistency | Alon Levy | 2015-01-09 | 1 | -0/+1 |
| | |||||
* | dispatcher.h: fix - s/#define MAIN_DISPATCHER_H/#define DISPATCHER_H | Yonit Halperin | 2013-04-22 | 1 | -3/+3 |
| | |||||
* | server/dispatcher: add dispatcher_register_async_done_callback | Alon Levy | 2011-11-08 | 1 | -0/+16 |
| | |||||
* | introduce DISPATCHER_{NONE,ACK,ASYNC} | Alon Levy | 2011-11-08 | 1 | -2/+11 |
| | |||||
* | server: introduce dispatcher | Alon Levy | 2011-11-08 | 1 | -0/+81 |
used for main_dispatcher only in this patch. Dispatcher is meant to be used for Main<->any low frequency messages. It's interface is meant to include the red_dispatcher usage: fixed size messages per message type some messages require an ack Some methods are added to be used by RedDispatcher later: dispatcher_handle_read - to be called directly by RedDispatcher epoll based loop dispatcher_set_opaque - to be set from red_worker pthread dispatcher_init - allow NULL core as used by red_worker Read and Write behavior: Sender: blocking write, blocking read for ack (if any). Reader: poll for any data, if such then blocking read for a message_type and following message. repeat until poll returns with no pending data to read. FDO Bugzilla: 42463 |