forked from Imagelibrary/rtems
2007-12-20 Jennifer Averett <jennifer.averett@OARcorp.com>
* Makefile.am, configure.ac: Added test for ualarm * psxualarm/Makefile.am, psxualarm/init.c, psxualarm/psxualarm.scn, psxualarm/system.h: New files.
This commit is contained in:
106
testsuites/psxtests/psxualarm/init.c
Normal file
106
testsuites/psxtests/psxualarm/init.c
Normal file
@@ -0,0 +1,106 @@
|
||||
/*
|
||||
* COPYRIGHT (c) 1989-1999.
|
||||
* On-Line Applications Research Corporation (OAR).
|
||||
*
|
||||
* The license and distribution terms for this file may be
|
||||
* found in the file LICENSE in this distribution or at
|
||||
* http://www.rtems.com/license/LICENSE.
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#define CONFIGURE_INIT
|
||||
#include "system.h"
|
||||
#include <signal.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
typedef void (*sighandler_t)(int);
|
||||
sighandler_t signal(int signum, sighandler_t handler);
|
||||
extern void _POSIX_signals_Abnormal_termination_handler( int signo );
|
||||
|
||||
volatile int Signal_occurred;
|
||||
volatile int Signal_count;
|
||||
|
||||
void Signal_handler(
|
||||
int signo
|
||||
)
|
||||
{
|
||||
Signal_count++;
|
||||
printf(
|
||||
"Signal: %d caught by 0x%x (%d)\n",
|
||||
signo,
|
||||
pthread_self(),
|
||||
Signal_count
|
||||
);
|
||||
Signal_occurred = 1;
|
||||
}
|
||||
|
||||
rtems_timer_service_routine Signal_duringISR_TSR(
|
||||
rtems_id ignored_id,
|
||||
void *ignored_address
|
||||
)
|
||||
{
|
||||
int status;
|
||||
status = kill( getpid(), SIGUSR1 );
|
||||
}
|
||||
|
||||
|
||||
void *POSIX_Init(
|
||||
void *argument
|
||||
)
|
||||
{
|
||||
int status;
|
||||
useconds_t result;
|
||||
struct sigaction act;
|
||||
sigset_t mask;
|
||||
sigset_t pending_set;
|
||||
sigset_t oset;
|
||||
struct timespec timeout;
|
||||
siginfo_t info;
|
||||
sighandler_t oldHandler;
|
||||
sighandler_t newHandler;
|
||||
rtems_interval start, end;
|
||||
|
||||
puts( "\n\n*** POSIX TEST UALARM ***" );
|
||||
|
||||
/* set the time of day, and print our buffer in multiple ways */
|
||||
|
||||
set_time( TM_FRIDAY, TM_MAY, 24, 96, 11, 5, 0 );
|
||||
|
||||
/* get id of this thread */
|
||||
|
||||
Init_id = pthread_self();
|
||||
printf( "Init's ID is 0x%08x\n", Init_id );
|
||||
|
||||
Signal_occurred = 0;
|
||||
Signal_count = 0;
|
||||
|
||||
/* Validate ualarm is ignored if signal not caught */
|
||||
act.sa_handler = Signal_handler;
|
||||
act.sa_flags = 0;
|
||||
sigaction( SIGALRM, &act, NULL );
|
||||
puts( "Init: ualarm in 1 us" );
|
||||
sleep(3);
|
||||
result = ualarm(1,0);
|
||||
status = sleep(10);
|
||||
|
||||
/* unblock Signal and see if it happened */
|
||||
status = sigemptyset( &mask );
|
||||
assert( !status );
|
||||
status = sigaddset( &mask, SIGALRM );
|
||||
assert( !status );
|
||||
puts( "Init: Unblock SIGALRM" );
|
||||
status = sigprocmask( SIG_UNBLOCK, &mask, NULL );
|
||||
assert( !status );
|
||||
status = sleep(10);
|
||||
|
||||
/* stop ularm */
|
||||
puts( "Init: clear ualarm with 0,0" );
|
||||
result = ualarm(0,0);
|
||||
status = sleep(10);
|
||||
|
||||
puts( "*** END OF POSIX TEST UALARM ***" );
|
||||
rtems_test_exit(0);
|
||||
|
||||
return NULL; /* just so the compiler thinks we returned something */
|
||||
}
|
||||
Reference in New Issue
Block a user