URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [psignalsetprocesssignals.c] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
/* * psignalsetprocesssignals.c,v 1.3 2001/01/24 14:17:28 joel Exp */ #if HAVE_CONFIG_H #include "config.h" #endif #include <assert.h> #include <errno.h> #include <pthread.h> #include <signal.h> #include <rtems/system.h> #include <rtems/score/isr.h> #include <rtems/score/thread.h> #include <rtems/score/tqdata.h> #include <rtems/score/wkspace.h> #include <rtems/seterr.h> #include <rtems/posix/threadsup.h> #include <rtems/posix/psignal.h> #include <rtems/posix/pthread.h> #include <rtems/posix/time.h> #include <stdio.h> /*PAGE * * _POSIX_signals_Set_process_signals */ void _POSIX_signals_Set_process_signals( sigset_t mask ) { ISR_Level level; _ISR_Disable( level ); if ( !_POSIX_signals_Pending ) _Thread_Do_post_task_switch_extension++; _POSIX_signals_Pending |= mask; _ISR_Enable( level ); }
Go to most recent revision | Compare with Previous | Blame | View Log