
8 Feb
2008
8 Feb
'08
11:10 p.m.
On Feb 8, 2008, at 5:36 PM, Peter Dimov wrote:
This is what I tried:
This test is all wrong.
unsigned __stdcall threadproc( void* pv ) { int k = (int)pv;
assert( k >= 0 && k < 5 );
This should be: asssert( 0 <= k && k < 5); ... Just kidding around! :-) Thanks Peter! Very interesting. -Howard