linux-fusion
linux-fusion copied to clipboard
Official DirectFB GitHub Repository (linux-fusion)
In the kernel version >=4.1.0 function sock_recvmsg does not accept argument 'size'.
If a caller successfully initiates a call and the callee quits before processing it or sending the reply, it can only be interrupted by a signal. This commit modifies fusion_call_destroy_all()...
Interrupted calls can leave behind FusionCallExecution entries if the caller quits without retrying the call. This can cause fusion_call_destroy() to wait forever for these entries to disappear. fusion_call_destroy_all() only removes...
fusion_ref_throw() stores Throw entries in FusionRef. These entries are normally removed by matching fusion_ref_catch() calls. This doesn't happen if the catcher fusionee never calls fusion_ref_catch(), e.g. it exits unexpectedly. Similar...