Displaying 4 results from an estimated 4 matches for "testmsg".
Did you mean:
testms
2010 Aug 25
2
[LLVMdev] Debug information on multiple files
...---- ext.c
#include <stdio.h>
int external_fn(void)
{
int i;
for (i = 0; i < 5; ++i) {
printf("ext fn #%d\n", i);
}
return 0;
}
-------------------------------- main.c
#include <stdio.h>
int external_fn(void);
int main(int argc, char** argv)
{
printf("TestMsg\n");
external_fn();
return 0;
}
$ clang -g main.c ext.c
$ gdb -q a.out
(gdb) start
Temporary breakpoint 1 at 0x4004c0: file main.c, line 7.
Starting program: /work/temp/a.out
Temporary breakpoint 1, main (argc=1, argv=0x7fffffffbf18) at main.c:7
7 printf("TestMsg\n");
(...
2006 May 01
1
/var/spool/asterisk/outgoing/ prematurely hanging up
...X2/foo".
I have an X-lite local extension, on which I can dial
51<10 digit ph#>, and asterisk will call out over foo
and the phone at <10 digit ph#> will ring. This rules
out a lot of possible problems.
extensions.conf includes this:
[outgoingtest]
exten => s,1,Playback(custom/testmsg)
exten => s,2,Wait(1)
exten => s,3,Hangup
And yes, asterisk has been restarted since the last
time any config files were modified.
I have a test message at
/var/lib/asterisk/sounds/custom/testmsg.gsm
If I make the file "1.call" containing:
Channel: IAX2/foo
MaxRetries: 1
RetryTim...
2010 Aug 25
2
[LLVMdev] [cfe-dev] Debug information on multiple files
...int i;
> for (i = 0; i < 5; ++i) {
> printf("ext fn #%d\n", i);
> }
> return 0;
> }
>
> -------------------------------- main.c
> #include <stdio.h>
>
> int external_fn(void);
>
> int main(int argc, char** argv)
> {
> printf("TestMsg\n");
> external_fn();
> return 0;
> }
>
> $ clang -g main.c ext.c
> $ gdb -q a.out
> (gdb) start
> Temporary breakpoint 1 at 0x4004c0: file main.c, line 7.
> Starting program: /work/temp/a.out
>
> Temporary breakpoint 1, main (argc=1, argv=0x7fffffffbf18) at...
2006 May 01
1
/var/spool/asterisk/outgoing/ prematurely hangingup
...X2/foo".
I have an X-lite local extension, on which I can dial
51<10 digit ph#>, and asterisk will call out over foo
and the phone at <10 digit ph#> will ring. This rules
out a lot of possible problems.
extensions.conf includes this:
[outgoingtest]
exten => s,1,Playback(custom/testmsg)
exten => s,2,Wait(1)
exten => s,3,Hangup
And yes, asterisk has been restarted since the last
time any config files were modified.
I have a test message at
/var/lib/asterisk/sounds/custom/testmsg.gsm
If I make the file "1.call" containing:
Channel: IAX2/foo
MaxRetries: 1
RetryTim...