OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gdb-6.8/] [sim/] [testsuite/] [sim/] [cris/] [c/] [sig2.c] - Diff between revs 24 and 157

Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 157
/*
/*
#notarget: cris*-*-elf
#notarget: cris*-*-elf
*/
*/
 
 
#include <stdio.h>
#include <stdio.h>
#include <signal.h>
#include <signal.h>
#include <stdlib.h>
#include <stdlib.h>
 
 
/* Like sig1.c, but using sigaction.  */
/* Like sig1.c, but using sigaction.  */
 
 
void
void
leave (int n, siginfo_t *info, void *x)
leave (int n, siginfo_t *info, void *x)
{
{
  abort ();
  abort ();
}
}
 
 
int
int
main (void)
main (void)
{
{
  struct sigaction sa;
  struct sigaction sa;
  sa.sa_sigaction = leave;
  sa.sa_sigaction = leave;
  sa.sa_flags = SA_RESTART | SA_SIGINFO;
  sa.sa_flags = SA_RESTART | SA_SIGINFO;
  sigemptyset (&sa.sa_mask);
  sigemptyset (&sa.sa_mask);
 
 
  /* Check that the sigaction syscall (for signal) is interpreted, though
  /* Check that the sigaction syscall (for signal) is interpreted, though
     possibly ignored.  */
     possibly ignored.  */
  if (sigaction (SIGFPE, &sa, NULL) != 0)
  if (sigaction (SIGFPE, &sa, NULL) != 0)
    abort ();
    abort ();
 
 
  printf ("pass\n");
  printf ("pass\n");
  exit (0);
  exit (0);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.