Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[Freeswitch-users] segmentation fault by auto record


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
carole.olivier at enst.fr
Guest





PostPosted: Wed Dec 10, 2008 8:52 am    Post subject: [Freeswitch-users] segmentation fault by auto record Reply with quote

Sorry, here is the profile profile speaker

<profile name="profilespeaker">
< param name="rate" value="8000" />
< param name="interval" value="20" />
< param name="energy-level" value="300" />
< param name="caller-id-name" value="$${outbound_caller_name}" />
< param name="caller-id-number" value="$${outbound_caller_id}" />
< param name="comfort-noise-level" value="1400" />
< param name="comfort-noise" value="true" />
< param name="member_flags" value="waste" />
< param name="auto-record"
value="$${base_dir}/recordings/${conference_name}_${strftime(%Y-%m-%d-%H-%M-%S)}.wav"
/>
</profile>

--
View this message in context: http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20935752.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
msc at freeswitch.org
Guest





PostPosted: Wed Dec 10, 2008 10:55 am    Post subject: [Freeswitch-users] segmentation fault by auto record Reply with quote

Thanks for reporting this. It would be helpful to know a bit more. Can
you start freeswitch and press F12 (or type "version" at the CLI) and
report back what it says?
Also, a backtrace (bt) is generally useful. If you could produce a
"bt" and a "bt full" from you core file that would be extremely
helpful.

see this link for more information:
http://wiki.freeswitch.org/wiki/Debugging_Freeswitch

you should have a "core" file for each segfault that occurred. Use the
gdb program to get the back trace:

gdb /path/to/fs/binary core.xxx

then capture the output from these two commands:

bt <enter>
bt full <enter>

When you type those commands you'll see tons of debugging info;
capture that and put it in a pastebin (pastebin.freeswitch.org) then
report back here.

You can exit the gdb debugger by typing q <enter>

Thanks for helping us collect information!

-MC


On Wed, Dec 10, 2008 at 5:37 AM, Carole O. <carole.olivier@enst.fr> wrote:
Quote:

Hello,

I have intalled Freeswitch from opensuse.org as a rpm. I have opensuse 10.3.
I did not make any big configuration, I have just changed a little the
default dialplan and adapted some other files like conference.conf.xml.

I have created a new profile in conference.conf.xml and add the command to
order the automatic record of the conferences:

<profile name="profilespeaker">









</profile>

I have the following extension in my dialplan that uses this profile:

<extension name="call_speakers">
<condition field="destination_number" expression="^0911$">
<action application="set"
data="conference_auto_outcall_caller_id_name=call_speakers" />
<action application="set" data="conference_auto_outcall_id_number=0911"
/>
<action application="set" data="conference_auto_outcall_timeout=60" />
<action application="set" data="conference_auto_outcall_flags=mute" />
<action application="set" data="api_hangup_hook=conference conf_speaker
kick all" />
<!-- devices called -->
<action application="conference_set_auto_outcall"
data="user/1021@$${domain}" />
<action application="conference_set_auto_outcall"
data="user/1022@$${domain}" />
<!-- creation conference -->
<action application="conference" data="conf_speaker@profilespeaker" />
</condition>
</extension>

1021 and 1022 are IP loud speakers.
I call them with 0911, they answer, I can talk and everything works well.
However, when I hang up a segmentation fault appears and freeswitch
shutdowns. In recordings I can find a file which corresponds to the recorded
call but this is empty. Nothing has been recorded.
If I comment the line with the recording command then it works without
problem except the recording...

I have joined two files: one contains the errors that appears when I run
freeswitch and the other what happens if I call the extension 0911.

http://www.nabble.com/file/p20935513/running_freeswitch.txt
running_freeswitch.txt
http://www.nabble.com/file/p20935513/call_extension.txt call_extension.txt

If someone has an idea, it would be very helpful
Thanks!!
Carole
--
View this message in context: http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20935513.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
brian at freeswitch.org
Guest





PostPosted: Wed Dec 10, 2008 11:11 am    Post subject: [Freeswitch-users] segmentation fault by auto record Reply with quote

I have already labbed this up on SVN trunk and I don't get a segfault but I get something else that prevents it from working properly. We are working on it today. Also what version are you running?

/b

On Dec 10, 2008, at 9:53 AM, Michael Collins wrote:
Quote:
Thanks for reporting this. It would be helpful to know a bit more. Can
you start freeswitch and press F12 (or type "version" at the CLI) and
report back what it says?
Also, a backtrace (bt) is generally useful. If you could produce a
"bt" and a "bt full" from you core file that would be extremely
helpful.

see this link for more information:
http://wiki.freeswitch.org/wiki/Debugging_Freeswitch

you should have a "core" file for each segfault that occurred. Use the
gdb program to get the back trace:

gdb /path/to/fs/binary core.xxx

then capture the output from these two commands:

bt <enter>
bt full <enter>

When you type those commands you'll see tons of debugging info;
capture that and put it in a pastebin (pastebin.freeswitch.org) then
report back here.

You can exit the gdb debugger by typing q <enter>

Thanks for helping us collect information!

-MC
Back to top
carole.olivier at enst.fr
Guest





PostPosted: Thu Dec 11, 2008 1:53 am    Post subject: [Freeswitch-users] segmentation fault by auto record Reply with quote

Hello,

I am running the version 1.0.1.
Do you still need me to run the debugging?

Carole


Brian West-3 wrote:
Quote:

I have already labbed this up on SVN trunk and I don't get a segfault
but I get something else that prevents it from working properly. We
are working on it today. Also what version are you running?

/b

On Dec 10, 2008, at 9:53 AM, Michael Collins wrote:

Quote:
Thanks for reporting this. It would be helpful to know a bit more. Can
you start freeswitch and press F12 (or type "version" at the CLI) and
report back what it says?
Also, a backtrace (bt) is generally useful. If you could produce a
"bt" and a "bt full" from you core file that would be extremely
helpful.

see this link for more information:
http://wiki.freeswitch.org/wiki/Debugging_Freeswitch

you should have a "core" file for each segfault that occurred. Use the
gdb program to get the back trace:

gdb /path/to/fs/binary core.xxx

then capture the output from these two commands:

bt <enter>
bt full <enter>

When you type those commands you'll see tons of debugging info;
capture that and put it in a pastebin (pastebin.freeswitch.org) then
report back here.

You can exit the gdb debugger by typing q <enter>

Thanks for helping us collect information!

-MC


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20950299.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
msc at freeswitch.org
Guest





PostPosted: Thu Dec 11, 2008 2:11 am    Post subject: [Freeswitch-users] segmentation fault by auto record Reply with quote

Carole,

There have been many updates since 1.0.1 was officially released. If
you could start FreeSWITCH and then press F12 it will reveal which SVN
revisionnumber you are running. Please supply that number and it will
help us to know if you are on a recent revision.

Thanks,
MC

On Wed, Dec 10, 2008 at 10:51 PM, Carole O. <carole.olivier@enst.fr> wrote:
Quote:

Hello,

I am running the version 1.0.1.
Do you still need me to run the debugging?

Carole


Brian West-3 wrote:
Quote:

I have already labbed this up on SVN trunk and I don't get a segfault
but I get something else that prevents it from working properly. We
are working on it today. Also what version are you running?

/b

On Dec 10, 2008, at 9:53 AM, Michael Collins wrote:

Quote:
Thanks for reporting this. It would be helpful to know a bit more. Can
you start freeswitch and press F12 (or type "version" at the CLI) and
report back what it says?
Also, a backtrace (bt) is generally useful. If you could produce a
"bt" and a "bt full" from you core file that would be extremely
helpful.

see this link for more information:
http://wiki.freeswitch.org/wiki/Debugging_Freeswitch

you should have a "core" file for each segfault that occurred. Use the
gdb program to get the back trace:

gdb /path/to/fs/binary core.xxx

then capture the output from these two commands:

bt <enter>
bt full <enter>

When you type those commands you'll see tons of debugging info;
capture that and put it in a pastebin (pastebin.freeswitch.org) then
report back here.

You can exit the gdb debugger by typing q <enter>

Thanks for helping us collect information!

-MC


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20950299.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
carole.olivier at enst.fr
Guest





PostPosted: Thu Dec 11, 2008 2:40 am    Post subject: [Freeswitch-users] segmentation fault by auto record Reply with quote

I have got the following:
Freeswitch Version 1.0.1 (9171)

Carole



Michael Collins-11 wrote:
Quote:

Carole,

There have been many updates since 1.0.1 was officially released. If
you could start FreeSWITCH and then press F12 it will reveal which SVN
revisionnumber you are running. Please supply that number and it will
help us to know if you are on a recent revision.

Thanks,
MC

On Wed, Dec 10, 2008 at 10:51 PM, Carole O. <carole.olivier@enst.fr>
wrote:
Quote:

Hello,

I am running the version 1.0.1.
Do you still need me to run the debugging?

Carole


Brian West-3 wrote:
Quote:

I have already labbed this up on SVN trunk and I don't get a segfault
but I get something else that prevents it from working properly. We
are working on it today. Also what version are you running?

/b

On Dec 10, 2008, at 9:53 AM, Michael Collins wrote:

Quote:
Thanks for reporting this. It would be helpful to know a bit more. Can
you start freeswitch and press F12 (or type "version" at the CLI) and
report back what it says?
Also, a backtrace (bt) is generally useful. If you could produce a
"bt" and a "bt full" from you core file that would be extremely
helpful.

see this link for more information:
http://wiki.freeswitch.org/wiki/Debugging_Freeswitch

you should have a "core" file for each segfault that occurred. Use the
gdb program to get the back trace:

gdb /path/to/fs/binary core.xxx

then capture the output from these two commands:

bt <enter>
bt full <enter>

When you type those commands you'll see tons of debugging info;
capture that and put it in a pastebin (pastebin.freeswitch.org) then
report back here.

You can exit the gdb debugger by typing q <enter>

Thanks for helping us collect information!

-MC


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context:
http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20950299.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20950711.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
msc at freeswitch.org
Guest





PostPosted: Thu Dec 11, 2008 3:09 am    Post subject: [Freeswitch-users] segmentation fault by auto record Reply with quote

Wow! That is really old. I strongly recommend that you update to the
latest trunk using svn.

-MC


On Dec 10, 2008, at 11:33 PM, "Carole O." <carole.olivier@enst.fr>
wrote:

Quote:

I have got the following:
Freeswitch Version 1.0.1 (9171)

Carole



Michael Collins-11 wrote:
Quote:

Carole,

There have been many updates since 1.0.1 was officially released. If
you could start FreeSWITCH and then press F12 it will reveal which
SVN
revisionnumber you are running. Please supply that number and it will
help us to know if you are on a recent revision.

Thanks,
MC

On Wed, Dec 10, 2008 at 10:51 PM, Carole O. <carole.olivier@enst.fr>
wrote:
Quote:

Hello,

I am running the version 1.0.1.
Do you still need me to run the debugging?

Carole


Brian West-3 wrote:
Quote:

I have already labbed this up on SVN trunk and I don't get a
segfault
but I get something else that prevents it from working
properly. We
are working on it today. Also what version are you running?

/b

On Dec 10, 2008, at 9:53 AM, Michael Collins wrote:

Quote:
Thanks for reporting this. It would be helpful to know a bit
more. Can
you start freeswitch and press F12 (or type "version" at the
CLI) and
report back what it says?
Also, a backtrace (bt) is generally useful. If you could produce a
"bt" and a "bt full" from you core file that would be extremely
helpful.

see this link for more information:
http://wiki.freeswitch.org/wiki/Debugging_Freeswitch

you should have a "core" file for each segfault that occurred.
Use the
gdb program to get the back trace:

gdb /path/to/fs/binary core.xxx

then capture the output from these two commands:

bt <enter>
bt full <enter>

When you type those commands you'll see tons of debugging info;
capture that and put it in a pastebin (pastebin.freeswitch.org)
then
report back here.

You can exit the gdb debugger by typing q <enter>

Thanks for helping us collect information!

-MC


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context:
http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20950299.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20950711.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
carole.olivier at enst.fr
Guest





PostPosted: Thu Dec 11, 2008 6:25 am    Post subject: [Freeswitch-users] segmentation fault by auto record Reply with quote

ok !

Well, I installed it from opensuse.org, I thought it would be easier for me
since I am completely new here.
Is there a simple way to update this package or would you recommend me to
uninstall the rpm and install freeswitch completely new from the source code
you provide?

Thanks,
Carole


Michael Collins-11 wrote:
Quote:

Wow! That is really old. I strongly recommend that you update to the
latest trunk using svn.

-MC


On Dec 10, 2008, at 11:33 PM, "Carole O." <carole.olivier@enst.fr>
wrote:

Quote:

I have got the following:
Freeswitch Version 1.0.1 (9171)

Carole



Michael Collins-11 wrote:
Quote:

Carole,

There have been many updates since 1.0.1 was officially released. If
you could start FreeSWITCH and then press F12 it will reveal which
SVN
revisionnumber you are running. Please supply that number and it will
help us to know if you are on a recent revision.

Thanks,
MC

On Wed, Dec 10, 2008 at 10:51 PM, Carole O. <carole.olivier@enst.fr>
wrote:
Quote:

Hello,

I am running the version 1.0.1.
Do you still need me to run the debugging?

Carole


Brian West-3 wrote:
Quote:

I have already labbed this up on SVN trunk and I don't get a
segfault
but I get something else that prevents it from working
properly. We
are working on it today. Also what version are you running?

/b

On Dec 10, 2008, at 9:53 AM, Michael Collins wrote:

Quote:
Thanks for reporting this. It would be helpful to know a bit
more. Can
you start freeswitch and press F12 (or type "version" at the
CLI) and
report back what it says?
Also, a backtrace (bt) is generally useful. If you could produce a
"bt" and a "bt full" from you core file that would be extremely
helpful.

see this link for more information:
http://wiki.freeswitch.org/wiki/Debugging_Freeswitch

you should have a "core" file for each segfault that occurred.
Use the
gdb program to get the back trace:

gdb /path/to/fs/binary core.xxx

then capture the output from these two commands:

bt <enter>
bt full <enter>

When you type those commands you'll see tons of debugging info;
capture that and put it in a pastebin (pastebin.freeswitch.org)
then
report back here.

You can exit the gdb debugger by typing q <enter>

Thanks for helping us collect information!

-MC


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context:
http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20950299.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context:
http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20950711.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/segmentation-fault-by-auto-record-tp20935513p20953570.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
william at channelxstr...
Guest





PostPosted: Thu Dec 11, 2008 6:39 am    Post subject: [Freeswitch-users] segmentation fault by auto record Reply with quote

Carole,

1.0.1 is known to be broken now. Can you go into the directory where you
have the freeswitch source from the svn repo and type 'make current'.
This will update freeswitch to trunk.

-William

On Wed, 2008-12-10 at 22:51 -0800, Carole O. wrote:
Quote:
Hello,

I am running the version 1.0.1.
Do you still need me to run the debugging?

Carole


Brian West-3 wrote:
Quote:

I have already labbed this up on SVN trunk and I don't get a segfault
but I get something else that prevents it from working properly. We
are working on it today. Also what version are you running?

/b

On Dec 10, 2008, at 9:53 AM, Michael Collins wrote:

Quote:
Thanks for reporting this. It would be helpful to know a bit more. Can
you start freeswitch and press F12 (or type "version" at the CLI) and
report back what it says?
Also, a backtrace (bt) is generally useful. If you could produce a
"bt" and a "bt full" from you core file that would be extremely
helpful.

see this link for more information:
http://wiki.freeswitch.org/wiki/Debugging_Freeswitch

you should have a "core" file for each segfault that occurred. Use the
gdb program to get the back trace:

gdb /path/to/fs/binary core.xxx

then capture the output from these two commands:

bt <enter>
bt full <enter>

When you type those commands you'll see tons of debugging info;
capture that and put it in a pastebin (pastebin.freeswitch.org) then
report back here.

You can exit the gdb debugger by typing q <enter>

Thanks for helping us collect information!

-MC


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
William King
Cell: 253-686-5518
E-mail: william@channelxstream.com
Channel XStream
www.channelxstream.com
1-877-600-6786

If there is a possibility that any information in our conversation might
be considered 'private' or 'sensitive' such as passwords, account
information, legal or financial information, or anything else that you
would consider 'private' or 'sensitive' communications. It is better to
always err on the side of security. Please encrypt the e-mail using
my gpg key: 95C9D5B3.

If you are unfamiliar with e-mail encryption feel free to let me know
and I can help you establish the proper protocols and procedures.
https://help.ubuntu.com/community/GnuPrivacyGuardHowto

Get my gpg key: gpg --recv-key --keyserver keyserver.ubuntu.com 95C9D5B3
Key Fingerprint: EA6F B2EE 1846 55D4 FFD9 80BA 6489 B48C 95C9 D5B3

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Thu Dec 11, 2008 6:55 pm    Post subject: [Freeswitch-users] segmentation fault by auto record Reply with quote

issue should be fixed in SVN r10723

On Thu, Dec 11, 2008 at 1:01 AM, William King <william@channelxstream.com (william@channelxstream.com)> wrote:
Quote:
Carole,

1.0.1 is known to be broken now. Can you go into the directory where you
have the freeswitch source from the svn repo and type 'make current'.
This will update freeswitch to trunk.

-William


On Wed, 2008-12-10 at 22:51 -0800, Carole O. wrote:
Quote:
Hello,

I am running the version 1.0.1.
Do you still need me to run the debugging?

Carole


Brian West-3 wrote:
Quote:

I have already labbed this up on SVN trunk and I don't get a segfault
but I get something else that prevents it from working properly. We
are working on it today. Also what version are you running?

/b

On Dec 10, 2008, at 9:53 AM, Michael Collins wrote:

Quote:
Thanks for reporting this. It would be helpful to know a bit more. Can
you start freeswitch and press F12 (or type "version" at the CLI) and
report back what it says?
Also, a backtrace (bt) is generally useful. If you could produce a
"bt" and a "bt full" from you core file that would be extremely
helpful.

see this link for more information:
http://wiki.freeswitch.org/wiki/Debugging_Freeswitch

you should have a "core" file for each segfault that occurred. Use the
gdb program to get the back trace:

gdb /path/to/fs/binary core.xxx

then capture the output from these two commands:

bt <enter>
bt full <enter>

When you type those commands you'll see tons of debugging info;
capture that and put it in a pastebin (pastebin.freeswitch.org) then
report back here.

You can exit the gdb debugger by typing q <enter>

Thanks for helping us collect information!

-MC


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--


William King
Cell: 253-686-5518
E-mail: william@channelxstream.com (william@channelxstream.com)
Channel XStream
www.channelxstream.com
1-877-600-6786

If there is a possibility that any information in our conversation might
be considered 'private' or 'sensitive' such as passwords, account
information, legal or financial information, or anything else that you
would consider 'private' or 'sensitive' communications. It is better to
always err on the side of security. Please encrypt the e-mail using
my gpg key: 95C9D5B3.

If you are unfamiliar with e-mail encryption feel free to let me know
and I can help you establish the proper protocols and procedures.
https://help.ubuntu.com/community/GnuPrivacyGuardHowto

Get my gpg key: gpg --recv-key --keyserver keyserver.ubuntu.com 95C9D5B3
Key Fingerprint: EA6F B2EE 1846 55D4 FFD9 80BA 6489 B48C 95C9 D5B3

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services