*/
int shm_tests( void * the_argp )
{
-#if !TARGET_OS_EMBEDDED
int my_err;
int my_shm_id;
void * my_shm_addr = NULL;
shmctl( my_shm_id, IPC_RMID, NULL);
}
return( my_err );
-#else
- printf( "\t--> Not supported on EMBEDDED TARGET\n" );
- return 0;
-#endif
}