search for: signal

Displaying 20 results from an estimated 17363 matches for "signal".

2003 Jun 23
1
help with pri configuration..
Hi all, can somebody help me with pri configuration? Here my zapata.conf: ; Zapata telephony interface ; ; Configuration file [channels] switchtype=euroisdn signalling=pri_cpe ;group=1 channel => 1-15,17-31 ;group=2 channel =>32-46,48-62 ;group=3 channel => 63-77,79-93 ;group=4 channel => 94-108,110-124 And here my zaptel.conf: zaptel.conf [----] 0 L:[ 1+ 0 1/ 18] *(0 / 227b)= . 10 0x0A span=1,0,0,ccs,hdb3 #,crc4 span=2,0,...
2004 Dec 02
4
TE110P + Asterisk
...Standard Linux Telephony API Driver) [chan_features.so] => (Feature Proxy Channel) == Registered channel type 'Feature' (Feature Proxy Channel Driver) [chan_zap.so] => (Zapata Telephony w/PRI) == Parsing '/etc/asterisk/zapata.conf': Found -- Registered channel 1, PRI Signalling signalling -- Registered channel 2, PRI Signalling signalling -- Registered channel 3, PRI Signalling signalling -- Registered channel 4, PRI Signalling signalling -- Registered channel 5, PRI Signalling signalling -- Registered channel 6, PRI Signalling signalling -- Re...
2003 Apr 09
5
httpd exited on signal 11
Hello Folks, I have used FreeBSD-4.8-RC and apache 1.3.2x. In some days,my dmesg has shown as the lines; pid 9229 (httpd), uid 80: exited on signal 11 pid 10106 (httpd), uid 80: exited on signal 11 pid 9842 (httpd), uid 80: exited on signal 11 pid 35708 (httpd), uid 80: exited on signal 11 pid 9371 (httpd), uid 80: exited on signal 11 pid 10337 (httpd), uid 80: exited on signal 11 pid 9757 (httpd), uid 80: exited on signal 11...
2004 Jan 31
2
TE410P E1 PRI problem
...le ztcfg shows: ---------------------------------- [root@ceres asterisk]# /sbin/ztcfg -v Zaptel Configuration ====================== SPAN 1: CCS/HDB3 Build-out: 0 db (CSU)/0-133 feet (DSX-1) 31 channels configured. /etc/asterisk/zapata.conf ------------------------ ; trunk: switchtype = euroisdn signalling = pri_cpe group = 2 context = default channel => 1-15,17-31 extensions.conf --------------- I have demo context section included in default context where incoming calls from PRI trunk are terminated. (When I dial from SIP phone terminated in same default context I get the response., so I t...
2005 Oct 05
2
Confused
...ail1 dovecot: imap(*****): file mbox-save.c: line 280 (mbox_save_init_file): assertion failed: (mbox->mbox_lock_type != F_RDLCK) Some of them also have something to do with storage space. Any ideas at all? Thanks :) Regards, Matt ---dmesg snip---- pid 20905 (imap), uid 34411: exited on signal 6 pid 42237 (imap), uid 33345: exited on signal 6 pid 42757 (imap), uid 33345: exited on signal 6 pid 43036 (imap), uid 33345: exited on signal 6 pid 41987 (imap), uid 32768: exited on signal 6 pid 99572 (imap), uid 35371: exited on signal 6 pid 99759 (imap), uid 35371: exited on signal 6 pid 49474...
2011 Aug 11
2
Extract values from a data frame
Hi everyone, I have a data frame that looks *sort of* like this: name <- letters[1:5] signal.1 <- c("12", "bad signal", "noise", "10", "X") length.signal.1 <- 5:9 intensity.signal.1 <- 3:7 signal.2 <- c("13", "noise", "19.2", "X", "V") length.signal.2 <- 2:6 intensity.signal.2...
2018 Jan 23
8
Sending Signal to remote process
I want ssh to forward the SIGTERM signal to the remote command. Example: ssh root at localhost /root/print-signal.py Get PID of ssh: ps aux| grep print-signal Kill the matching ssh process: kill pid-of-ssh Unfortunately only the ssh process itself gets the signal, not the remote command (print-signal.py). The remote...
2023 May 22
1
[PATCH 1/3] signal: Don't always put SIGKILL in shared_pending
When get_pending detects the task has been marked to be killed we try to clean up the SIGKLL by doing a sigdelset and recalc_sigpending, but we still leave it in shared_pending. If the signal is being short circuit delivered there is no need to put in shared_pending so this adds a check in complete_signal. This patch was modified from Eric Biederman <ebiederm at xmission.com> original patch. Signed-off-by: Mike Christie <michael.christie at oracle.com> --- kernel/signal.c...
2010 Nov 02
0
Noise while passing channel using tde205p card
...tended to be a complete zapata.conf. Rather, it is intended ; to be #include-d by /etc/zapata.conf that will include the global settings ; [channels] ; Span 1: TE2/0/1 "T2XXP (PCI) Card 0 Span 1" language=es context=default switchtype=euroisdn pridialplan=unknown prilocaldialplan=national signalling=pri_cpe resetinterval=never group=1 channel => 1-15,17-31 ; Span 2: TE2/0/2 "T2XXP (PCI) Card 0 Span 2" group=2 channel => 32-46,48-62 #################################################### /etc/asterisk/extensions.conf ... [jump0] exten => s,1,Dial(Zap/R2/999999999,10,r) ex...
2009 Mar 08
3
[LLVMdev] Compiling LLVM on MinGW
Like this: llvm[1]: Compiling Signals.cpp for Debug build In file included from Signals.cpp:33: Win32/Signals.inc:262: error: `sys' has not been declared Win32/Signals.inc: In function `void AddSignalHandler(void (*)(void*), void*)': Win32/Signals.inc:266: error: `KillSigs' was not declared in this scope Win32/Signals.inc:...
2010 Mar 03
5
filtering signals per day
Hello R lovers, I have a vector of dates and signals. I want to filter the signals per day in a way that only the first signal of the day remains like this: Dates Signals Filtered Signal 2006-11-02 0 0 2006-11-02 1 1 2006-11-02 0 0 2006-11-02...
2007 Dec 03
0
object framework design, part II: COMMUNICATION
...guments. It's a regular function call, hence also very efficient. As member functions can't access members or children provided by interfaces that are part of derived types or loaded after the member functions own interface, some other form of communication interface is required as well. Signals Signals are basically just member functions for which invocation can be connected to a member function of one of its descendants. It's also possible to connect invocation to a member function of the object itself but the function must then be part the interface with signal, a base-type interf...
2009 Mar 08
0
[LLVMdev] Compiling LLVM on MinGW
On Mar 8, 2009, at 4:21 AM, Lennart Augustsson wrote: > Like this: > > llvm[1]: Compiling Signals.cpp for Debug build > In file included from Signals.cpp:33: > Win32/Signals.inc:262: error: `sys' has not been declared > Win32/Signals.inc: In function `void AddSignalHandler(void (*) > (void*), void*)': > Win32/Signals.inc:266: error: `KillSigs' was not declared in th...
2006 Dec 19
1
Bug: (dovecot-auth), exited on signal 6
...mail dovecot: auth(default): cache(m52 at academ.org): Password mismatch Dec 19 12:49:42 mail dovecot: auth(default): file passdb-blocking.c: line 125 (passdb_blocking_verify_plain): assertion failed: (request->extra_fields == NULL) Dec 19 12:49:42 mail dovecot: child 91510 (auth) killed with signal 6 Dec 19 09:20:39 mail pid 96304 (dovecot-auth), uid 65534: exited on signal 6 Dec 19 09:43:31 mail pid 21093 (dovecot-auth), uid 65534: exited on signal 6 Dec 19 09:49:54 mail pid 36637 (dovecot-auth), uid 65534: exited on signal 6 Dec 19 10:02:08 mail pid 40803 (dovecot-auth), uid 65534: exited...
2005 May 30
2
Error in Zapata Config?
When I reload the config, I see this error in the CLI. However, I don't see what I have done wrong: == Parsing '/etc/asterisk/zapata.conf': Found May 30 16:38:42 WARNING[12630]: chan_zap.c:10088 setup_zap: Ignoring signalling -- Reconfigured channel 1, FXO Kewlstart signalling May 30 16:38:42 WARNING[12630]: chan_zap.c:10088 setup_zap: Ignoring signalling -- Reconfigured channel 2, FXO Kewlstart signalling May 30 16:38:42 WARNING[12630]: chan_zap.c:10088 setup_zap: Ignoring signalling -- Reconfigured cha...
2004 Mar 11
5
fft question
Hi! I am using the fft() function the base package to transform some 1d signal. If I use this standar fucntion I get a very huge first fourier coeficient. I think this dues to the handling of the borders of the signal. Usually in fft especially in image processing the signal is simulated to be continuous by adding the signal several times periodically. My question is, is the...
2005 Nov 05
3
Signal id and signal sender pid using dtrace
Hi I have a process which reads a socket using recvfrom. After sometime, for no apparent reason, recvfrom exits with an EINTR causing the sender to barf too. Basically the socket on which these processes were communicating no longer exists. On writing a dtrace, I could determine that a signal was received at that socket causing the EINTR. I do not know of way to see who sent the signal (which process) and what the signal number is. I would very much appreciate your help. Thanks in advance. This message posted from opensolaris.org
2004 Sep 25
1
[LLVMdev] Linking tblgen debug executable (without symbols) on MinGW
...ode not present on the platform) the source code of the LLVM tblgen tool on the MinGW platform. However, when linking the object files the linker does not succeed: -------------------------- Linking tblgen debug executable (without symbols) C:/MinGW/msys/local/build/llvm/lib/Debug/libLLVMsystem.a(Signals.o)(.text+0x7e3): In function `Z28LLVMUnhandledExceptionFilterP19_EXCEPTION_POINTERS': C:/MinGW/msys/local/build/llvm/lib/System/platform/Signals.cpp:163: undefined reference to `_imp__SymSetOptions at 4' C:/MinGW/msys/local/build/llvm/lib/Debug/libLLVMsystem.a(Signals.o)(.text+0x806):C:/...
2004 Sep 23
10
MFC/R2
Hi all, I have begun the release of my MFC/R2 protocol software. At http://www.opencall.org/installing-mfcr2.html there are instructions for installing what I have released so far. This is the MFC/R2 protocol software, and a test program. The software to interface Asterisk to the MFC/R2 code will be released shortly. It used to work, but it hasn't been touched for a while, and Asterisk
2004 Sep 24
2
[LLVMdev] Little win32/Signals.cpp patch
...it's not possible to use hash_map and hash_set of microsoft) cl /nologo /TP /EHsc /GR /Zi /Yd /D__STDC_LIMIT_MACROS /DHAVE__FINITE_IN_FLOAT_H /DHAVE__ISNAN_IN_FLOAT_H /DHAVE_WINDOWS_H /ISTLport-4.6.2\stlport /Illvm\include /Iinclude /Ibuild_vc71\inclu de /Illvm\include /c llvm\lib\System\Signals.cpp /Fobuild_vc71\lib\System\Signals.obj Signals.cpp d:\home\arathorn\sandbox\llvm\llvm\lib\System\platform\Signals.cpp(127) : error C2039: 'remove' : is not a member of '_STL' d:\home\arathorn\sandbox\llvm\llvm\lib\System\platform\Signals.cpp(127) : error C3861: 'remove'...