]> rtime.felk.cvut.cz Git - frescor/fwp.git/blob - .topmsg
Removed unused fwp_vres_get_id()
[frescor/fwp.git] / .topmsg
1 From: Michal Sojka <sojkam1@fel.cvut.cz>
2 Subject: Implemented synchronous and asynchronous sending
3
4 The main goal of this big change is to avoid delays caused by CPU
5 scheduler when rescheduling from application thread to VRES TX thread.
6 According to our fwp-timing.c experiment, these delays can by even
7 several milliseconds long.
8
9 Now, whenever VRES capacity allows, send operation is invoked directly
10 from application thread. Only if the budget is insufficient, the
11 message can be queued for sending later by VRES thread, provided that
12 asynchronous send was requested. In case of synchronous send, the
13 application thread is blocked until the budget is replenished.
14
15 Besides the above change, the code was cleaned up a lot.
16
17 Signed-off-by: Michal Sojka <sojkam1@fel.cvut.cz>