Ticket #272: trace

File trace, 3.3 kB (added by davech, 7 months ago)

gdb trace

Line 
1 calvin ~ # ldd /usr/bin/pulseaudio
2         linux-gate.so.1 =>  (0xffffe000)
3         libpulsecore.so.5 => /usr/lib/libpulsecore.so.5 (0xb7e96000)
4         libltdl.so.3 => /usr/lib/libltdl.so.3 (0xb7e8e000)
5         libsndfile.so.1 => /usr/lib/libsndfile.so.1 (0xb7e35000)
6         libFLAC.so.8 => /usr/lib/libFLAC.so.8 (0xb7dfc000)
7         libogg.so.0 => /usr/lib/libogg.so.0 (0xb7df6000)
8         liboil-0.3.so.0 => /usr/lib/liboil-0.3.so.0 (0xb7d98000)
9         libdbus-1.so.3 => /usr/lib/libdbus-1.so.3 (0xb7d60000)
10         libcap.so.1 => /lib/libcap.so.1 (0xb7d5c000)
11         librt.so.1 => /lib/librt.so.1 (0xb7d54000)
12         libdl.so.2 => /lib/libdl.so.2 (0xb7d50000)
13         libm.so.6 => /lib/libm.so.6 (0xb7d28000)
14         libpthread.so.0 => /lib/libpthread.so.0 (0xb7d11000)
15         libc.so.6 => /lib/libc.so.6 (0xb7be9000)
16         /lib/ld-linux.so.2 (0xb7f3a000)
17 calvin ~ # gdb pulseaudio
18 GNU gdb 6.7.1
19 Copyright (C) 2007 Free Software Foundation, Inc.
20 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
21 This is free software: you are free to change and redistribute it.
22 There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
23 and "show warranty" for details.
24 This GDB was configured as "i486-pc-linux-gnu"...
25 Using host libthread_db library "/lib/libthread_db.so.1".
26 (gdb) b main
27 Breakpoint 1 at 0x804f157: file daemon/main.c, line 325.
28 (gdb) run
29 Starting program: /usr/bin/pulseaudio
30
31 Breakpoint 1, main (argc=1, argv=0xbfb69d04) at daemon/main.c:325
32 325     daemon/main.c: No such file or directory.
33         in daemon/main.c
34 (gdb) bt
35 #0  main (argc=1, argv=0xbfb69d04) at daemon/main.c:325
36 (gdb) cont
37 Continuing.
38 W: main.c: This program is not intended to be run as root (unless --system is specified).
39 W: pid.c: Stale PID file, overwriting.
40 ALSA lib control.c:909:(snd_ctl_open_noupdate) Invalid CTL front:1
41 ALSA lib setup.c:96:(snd_sctl_install) Cannot lock ctl elem
42 ALSA lib setup.c:96:(snd_sctl_install) Cannot lock ctl elem
43 ALSA lib setup.c:96:(snd_sctl_install) Cannot lock ctl elem
44 ALSA lib setup.c:96:(snd_sctl_install) Cannot lock ctl elem
45 ALSA lib setup.c:96:(snd_sctl_install) Cannot lock ctl elem
46 ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'cards.EMU10K1.pcm.surround71.0:CARD=1'
47 ALSA lib conf.c:3510:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
48 ALSA lib conf.c:3982:(snd_config_expand) Evaluate error: No such file or directory
49 ALSA lib pcm.c:2144:(snd_pcm_open_noupdate) Unknown PCM surround71:1
50 ALSA lib control.c:909:(snd_ctl_open_noupdate) Invalid CTL front:0
51 ALSA lib control.c:909:(snd_ctl_open_noupdate) Invalid CTL front:0
52 W: alsa-util.c: Cannot find fallback mixer control "PCM".
53 [New LWP 19017]
54 ALSA lib pcm_bluetooth.c:245:(playback_hw_thread) poll fd 0 revents 32
55 [LWP 19017 exited]
56 [New LWP 19016]
57
58 Program received signal SIGSEGV, Segmentation fault.
59 [Switching to LWP 19016]
60 Cannot remove breakpoints because program is no longer writable.
61 It might be running in another process.
62 Further execution is probably impossible.
63 0xb78ba9ab in ?? ()
64 (gdb) bt
65 #0  0xb78ba9ab in ?? ()
66 #1  0x01000800 in ?? ()
67 #2  0x08060570 in ?? ()
68 #3  0xb5780308 in ?? ()
69 #4  0xb787b316 in ?? ()
70 #5  0x08081f70 in ?? ()
71 #6  0x08060570 in ?? ()
72 #7  0x00000002 in ?? ()
73 #8  0xb578036a in ?? ()
74 #9  0x08081f70 in ?? ()
75 #10 0x00000000 in ?? ()
76 (gdb) quit
77 The program is running.  Exit anyway? (y or n) y
78