Search Results

0
votes
1answer
299 views

No SDL Keypress events being detected

I am completely stumped as to why this code does not get any SDL keypress events. The other SDL events (removed for clarity) work fine. It does not work on my XP or Vista machines. No compile/li …
3
votes
2answers
1k views

Boost Asio serial_port - need help with io

So I've been trying to learn the boost::asio stuff to communicate to a serial device using RS232. The documementation is sparse and the examples are non-existent. Can't figure out exactly how to …
1
vote
1answer
570 views

Parallel quicksort: recursion using Boost Bind?

I am working on making quicksort parallel, threads being the first attempt. The non threaded version sorts correctly but the threaded doesn't (no surprise there). What I found interesting was whe …
3
votes

Guidelines to improve your code

In if statements put the constant on the left i.e. if( 12 == var ) not if( var == 12 ) Beacause if you miss typing a '=' then it …
1
vote

Boost Asio serial_port - need help with io

Thanks to the help from here and other places I got it working. Wrote a small program that might help some people figure out the boost serial port stuff as well. …