One of the things I'm going to try is:
current->timeout = jiffies + timeout * HZ;
if (0 >= down_interruptable(semaphore)) {
if (time_before(jiffies, current_timeout)) {
ret_val = -EINTR;
} else {
ret_val = -EBUSY;
}
} else {
ret_val = 0;
}
Should this work?
-Bret
-------------------------------------------------------------
SBS Technologies, Connectivity Products
... solutions for real-time connectivity
Bret Indrelee, Engineer
SBS Technologies, Inc., Connectivity Products
1284 Corporate Center Drive, St. Paul MN 55121
Direct: (651) 905-4731
Main: (651) 905-4700 Fax: (651) 905-4701
E-mail: bindrelee@sbs-cp.com http://www.sbs.com
-------------------------------------------------------------
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/