Changeset aee3d68 in rtems
- Timestamp:
- 02/10/99 17:03:46 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3165b4d3
- Parents:
- dd746c38
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/pthreadkill.c
rdd746c38 raee3d68 35 35 set_errno_and_return_minus_one( EINVAL ); 36 36 37 /* commented out when posix timers added 37 38 if ( _POSIX_signals_Vectors[ sig ].sa_flags == SA_SIGINFO ) 38 39 set_errno_and_return_minus_one( ENOSYS ); 39 40 /* 41 * RTEMS does not support sending a siginfo signal to a specific thread. 42 */ 40 */ 43 41 44 42 the_thread = _POSIX_Threads_Get( thread, &location ); -
c/src/exec/posix/src/sigaction.c
rdd746c38 raee3d68 22 22 #include <rtems/posix/seterr.h> 23 23 #include <rtems/score/isr.h> 24 25 /* 26 * PARAMETERS_PASSING_S is defined in ptimer.c 27 */ 28 29 extern void PARAMETERS_PASSING_S (int num_signal, const struct sigaction inf); 24 30 25 31 int sigaction( -
c/src/exec/posix/src/sigtimedwait.c
rdd746c38 raee3d68 113 113 _Thread_Enable_dispatch(); 114 114 115 /* 116 * When the thread is set free by a signal, it is need to eliminate 117 * the signal. 118 */ 119 120 _POSIX_signals_Clear_signals( api, the_info->si_signo, the_info, 121 FALSE, FALSE ); 122 115 123 errno = _Thread_Executing->Wait.return_code; 116 124 return the_info->si_signo; -
cpukit/posix/src/pthreadkill.c
rdd746c38 raee3d68 35 35 set_errno_and_return_minus_one( EINVAL ); 36 36 37 /* commented out when posix timers added 37 38 if ( _POSIX_signals_Vectors[ sig ].sa_flags == SA_SIGINFO ) 38 39 set_errno_and_return_minus_one( ENOSYS ); 39 40 /* 41 * RTEMS does not support sending a siginfo signal to a specific thread. 42 */ 40 */ 43 41 44 42 the_thread = _POSIX_Threads_Get( thread, &location ); -
cpukit/posix/src/sigaction.c
rdd746c38 raee3d68 22 22 #include <rtems/posix/seterr.h> 23 23 #include <rtems/score/isr.h> 24 25 /* 26 * PARAMETERS_PASSING_S is defined in ptimer.c 27 */ 28 29 extern void PARAMETERS_PASSING_S (int num_signal, const struct sigaction inf); 24 30 25 31 int sigaction( -
cpukit/posix/src/sigtimedwait.c
rdd746c38 raee3d68 113 113 _Thread_Enable_dispatch(); 114 114 115 /* 116 * When the thread is set free by a signal, it is need to eliminate 117 * the signal. 118 */ 119 120 _POSIX_signals_Clear_signals( api, the_info->si_signo, the_info, 121 FALSE, FALSE ); 122 115 123 errno = _Thread_Executing->Wait.return_code; 116 124 return the_info->si_signo;
Note: See TracChangeset
for help on using the changeset viewer.