# HG changeset patch # User etisserant # Date 1176388591 -7200 # Node ID 746b49869cbc921ba3fce102eaeba6021c6d2dea # Parent 1b3165f2d17d812acd444c2cfc268dfc7a6a4912 Removed Mutex liberation on CanSend. Too much race condition to avoid. Cannot be deeply tested. diff -r 1b3165f2d17d -r 746b49869cbc drivers/unix/unix.c --- a/drivers/unix/unix.c Thu Apr 12 16:20:22 2007 +0200 +++ b/drivers/unix/unix.c Thu Apr 12 16:36:31 2007 +0200 @@ -121,9 +121,9 @@ { if(port){ UNS8 res; - LeaveMutex(); + //LeaveMutex(); res = DLL_CALL(canSend)(((CANPort*)port)->fd, m); - EnterMutex(); + //EnterMutex(); return res; } return -1;