Forum: C Sep 20th, 2004 |
| Replies: 4 Views: 4,109 This tiny code will demonstrate how to log-off from windows.
Enjoy! |
Forum: C Aug 27th, 2004 |
| Replies: 10 Views: 4,678 The problem could be that you release your mutex too soon. The program is calling pthread_mutex_unlock() right after open(). Try releasing the mutex after the close() function.
Can you show us... |
Forum: C Aug 27th, 2004 |
| Replies: 10 Views: 4,678 What's in the "ifqcam.h" file? Did you write the qcam_ functions? If so, maybe the problem is in that code. |
Forum: C Aug 27th, 2004 |
| Replies: 10 Views: 4,678 i agree. maybe pthread_mutex_unlock function will help? |
Forum: C Aug 27th, 2004 |
| Replies: 10 Views: 4,678 try running two single threaded programs at the same time. see if two different cameras can be accessed at the same time. |
Forum: C Aug 9th, 2004 |
| Replies: 2 Views: 2,569 |