Use INT_MAX instead of 0xffffffff in call to kill() for 16bit compliance.

This commit is contained in:
Ralf Corsepius
2009-10-30 10:31:32 +00:00
parent 600f76da39
commit 713185fd3f
+1 -1
View File
@@ -560,7 +560,7 @@ void *POSIX_Init(
assert( !status );
puts( "Init: pthread_kill - SUCCESSFUL (signal = SIG_IGN)" );
status = kill( 0x7fffffff, SIGUSR1 );
status = kill( INT_MAX, SIGUSR1 );
if ( status != -1 )
printf( "status = %d\n", status );
assert( errno == ESRCH );