search for: signal_number

Displaying 4 results from an estimated 4 matches for "signal_number".

2015 Aug 21
0
Problem with psignal.c for Windows builds
...ed while getting pqR to work on Windows... The file src/ghuwin32/psignal.c (used only in Windows builds) fails to use the sigset_t type in all places where it should, using "int" some places instead. Here is a diff of the needed corrections: @@ -253,7 +253,7 @@ sighandler_t signal(int signal_Number, sighandler_t signal_Handler) int sigaddset(sigset_t* sigset_Info,int signal_Number) { if (IS_SIGNAL(signal_Number)) { - (*sigset_Info) |= (1 << (signal_Number - 1)); + (*sigset_Info) |= ((sigset_t)1 << (signal_Number - 1)); return 0; } else { @@ -26...
2015 Aug 24
0
Problem with psignal.c for Windows builds
...*****************************************************/ -int sigsetmask(int signal_Block_MaskNew); -int sigblock(int signal_Block_MaskNew); +sigset_t sigsetmask(sigset_t signal_Block_MaskNew); +sigset_t sigblock(sigset_t signal_Block_MaskNew); int sighold(int signal_Number); int sigrelse(int signal_Number); int sigaction(int signal_Number,struct sigaction* sigaction_Info, @@ -143,7 +150,7 @@ int sigsuspend(sigset_t* sigset_Info); /* Re-mapped functions ===================================================== */ -#define sigmask(signal_Index) (...
2011 Nov 21
2
Continue AGI after Dial() following caller hang up?
Hello, We would like to continue a Perl AGI after a Dial() it has done completes following caller hangup. We would like to do this in the same AGI, and not using a new AGI from the 'h' extension. It works fine when the called party hangs up and the 'g' option is used, but not for caller hangup. Is this possible? If not a confirmation that this is the case would be very helpful.
2003 May 14
0
System totally borked after installworld and mergemaster at 16:20:03 MSK
...: Wed May 14 16:25:03 MSD 2003 \ > goshik@goshik.binep.ac.ru:/usr/obj/usr/src/sys/GO i386 > # ps > /bin/ps: Exec format error. Wrong Architecture. > # pwd > usage: kill [-s signal_name] pid ... > kill -l [exit_status] > kill -signal_name pid ... > kill -signal_number pid ... Huh?!! > # exit > exit > > exit > exit > > Script done on Wed May 14 18:06:41 2003 Attempt to run buildworld: > Script started on Wed May 14 18:13:32 2003 > /bin/hostname: 1: Syntax error: word unexpected (expecting ")") > # cd /usr/src > # ma...