sidprice

Forum Replies Created

Viewing 15 posts - 91 through 105 (of 126 total)
  • Author
    Posts
  • in reply to: ESP32 Tutorial Issue #9908
    sidprice
    Participant

    Does JLink pod work? I have one of those I will try.

    in reply to: OpenOCD Issue #9868
    sidprice
    Participant

    Yes I am running in a VM, I have another debugger that uses STLinkV2 and it does not have this speed issue! I cannot run the tools on the host PC because clients require delivery of software in a VM.

    • This reply was modified 7 years, 4 months ago by sidprice.
    in reply to: OpenOCD Issue #9866
    sidprice
    Participant

    With GDBServerDelay set to 5000 VisualGDB starts correctly.

    However, it operates VERY slowly. A view opens saying the “Load” is taking too long and then if I try to step a line it tales 3-4 seconds to complete, this seems very slow.

    Sid

    in reply to: OpenOCD Issue #9864
    sidprice
    Participant

    Is this a clue … Warn : keep_alive() was not invoked in the 1000ms timelimit. GDB alive packet not sent! (1219). Workaround: increase “set remotetimeout” in GDB

    in reply to: OpenOCD Issue #9863
    sidprice
    Participant

    YES!!! Using retry the connection is good and the target stops at start of main.

    in reply to: OpenOCD Issue #9859
    sidprice
    Participant

    THis gives the same result, the connection fails. The gdb_port added manually is being used when starting OpenOCD:

    Launching gdbserver: C:\Users\Sid\AppData\Local\VisualGDB\EmbeddedDebugPackages\com.sysprogs.arm.openocd\bin\openocd.exe -f interface/stlink-v2-1.cfg -f target/stm32f4x.cfg -c “gdb_port 1234” -c “telnet_port 49862” -c init -c “reset init” -c “echo VisualGDB_OpenOCD_Ready”

    in reply to: OpenOCD Issue #9857
    sidprice
    Participant

    After starting OpenOCD with the command from the log I started arm-eabi-gdb and typed “target remote:49321”, the response was:
    C:\SysGCC\arm-eabi\bin>arm-eabi-gdb.exe
    GNU gdb (GDB) 7.12
    Copyright (C) 2016 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html&gt;
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law. Type “show copying”
    and “show warranty” for details.
    This GDB was configured as “–host=i686-pc-mingw32 –target=arm-eabi”.
    Type “show configuration” for configuration details.
    For bug reporting instructions, please see:
    <http://www.gnu.org/software/gdb/bugs/&gt;.
    Find the GDB manual and other documentation resources online at:
    <http://www.gnu.org/software/gdb/documentation/&gt;.
    For help, type “help”.
    Type “apropos word” to search for commands related to “word”.
    (gdb) target remote:49321
    Remote debugging using :49321
    warning: No executable has been specified and target does not support
    determining executable automatically. Try using the “file” command.
    0xfffffffe in ?? ()
    (gdb)

    in reply to: OpenOCD Issue #9853
    sidprice
    Participant

    In the GDBSession view I see:

    &”target remote :49321\n”
    &”:49321: No connection could be made because the target machine actively refused it.\n”
    ^error,msg=”:49321: No connection could be made because the target machine actively refused it.”

    In the VisualGDB diagnostics I see:

    Launching gdbserver: C:\Users\Sid\AppData\Local\VisualGDB\EmbeddedDebugPackages\com.sysprogs.arm.openocd\bin\openocd.exe -f interface/stlink-v2-1.cfg -f target/stm32f4x.cfg -c “gdb_port 49321” -c “telnet_port 49320” -c init -c “reset init” -c “echo VisualGDB_OpenOCD_Ready”

    There is no firewall enabled and Windows Defender “realtime protection” is turned off.

    Sid

    in reply to: Project with libopencm3 #9849
    sidprice
    Participant

    Thanks for the help, I have been able to manually  create a project that uses libopencm3 and build it.

    Sid

    in reply to: Create embedded static library #9699
    sidprice
    Participant

    Thanks for the help,

    Sid

    in reply to: Remote embedded project import #9684
    sidprice
    Participant

    OK, I have imported the project into Windows but it needs some customization because the original project has some Python scripts that are used to build some header files dynamically from reference material. I assume I will need to add this processing step manually to the build system?

    Does the import described in the article you linked parse the Makefiles or does it just parse the source file structure?

    Sid

    in reply to: Debugging Child Process #9661
    sidprice
    Participant

    To close out this issue since with the help of VisualGDB support we are now able to debug child processes …

    At this time we are running GDB on the target board and not using GDBServer.

    The “follow-fork-mode” was being set in the GDB startup options; before the application did a “fork” to the child process needing to be debugged the application was using some “system” calls to execute some commands. When the first “system” call was executed a new shell was being forked and GDB followed that child process. After the shell terminated GDB did not follow any further forks and the application’s child process was therefore not being debugged.

    The solution was either to not set the “follow-fork-mode” option until after the “system” commands had been executed or to simply place a breakpoint at the application’s “fork” instruction, and then set the “follow-fork-mode” option manually.

    This procedure worked with GDB 7.12 and we will test it with v7.10 because with v7,12 there appears to be an issue with the virtual terminal and we would prefer to have console output reported to Visual Studio as the application runs rather than to a file (the current work-around).

    Many thanks for the support!

    Sid

    in reply to: Debugging Child Process #9655
    sidprice
    Participant

    We seem to go in infinite circles here. I don’t understand why all of this worked with v7.10 and so broken with 7.12, my target is unchanged other than the toolchain.

    Sid

    in reply to: Debugging Child Process #9653
    sidprice
    Participant

    Thanks, I had just figured that out. The macro $(TargetPath) does not expand correctly, I had to place “/tmp/Wandboard_ISP” into the Launch Command. The debug session produces the following log output and does not run:

    (gdb begin)
    VisualGDB is licensed to Sid Price
    /usr/bin/gdb –interpreter mi –args “/tmp/Wandboard_ISP”
    =thread-group-added,id=”i1″
    ~”GNU gdb (GDB) 7.12\n”
    -gdb-version
    ~”Copyright (C) 2016 Free Software Foundation, Inc.\n”
    ~”License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html&gt;\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law. Type \”show copying\”\nand \”show warranty\” for details.\n”
    ~”This GDB was configured as \”arm-poky-linux-gnueabi\”.\nType \”show configuration\” for configuration details.”
    ~”\nFor bug reporting instructions, please see:\n”
    ~”<http://www.gnu.org/software/gdb/bugs/&gt;.\n”
    ~”Find the GDB manual and other documentation resources online at:\n<http://www.gnu.org/software/gdb/documentation/&gt;.\n”
    ~”For help, type \”help\”.\n”
    ~”Type \”apropos word\” to search for commands related to \”word\”…\n”
    ~”Reading symbols from /tmp/Wandboard_ISP…”
    ~”done.\n”
    ~”GNU gdb (GDB) 7.12\n”
    ~”Copyright (C) 2016 Free Software Foundation, Inc.\n”
    ~”License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html&gt;\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law. Type \”show copying\”\nand \”show warranty\” for details.\n”
    ~”This GDB was configured as \”arm-poky-linux-gnueabi\”.\nType \”show configuration\” for configuration details.”
    ~”\nFor bug reporting instructions, please see:\n”
    ~”<http://www.gnu.org/software/gdb/bugs/&gt;.\n”
    ~”Find the GDB manual and other documentation resources online at:\n<http://www.gnu.org/software/gdb/documentation/&gt;.\n”
    ~”For help, type \”help\”.\n”
    ~”Type \”apropos word\” to search for commands related to \”word\”.\n”
    ^done
    -list-features
    ^done,features=[“frozen-varobjs”,”pending-breakpoints”,”thread-info”,”data-read-memory-bytes”,”breakpoint-notifications”,”ada-task-info”,”language-option”,”info-gdb-mi-command”,”undefined-command-error-code”,”exec-run-start-option”]
    -gdb-set disassembly-flavor intel
    ^error,msg=”No symbol \”disassembly\” in current context.”
    -gdb-set print demangle off
    ^done
    -break-insert -f main
    ^done,bkpt={number=”1″,type=”breakpoint”,disp=”keep”,enabled=”y”,addr=”0x00010830″,func=”main(int, char**)”,file=”Wandboard_ISP.cpp”,fullname=”/tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/Wandboard_ISP/Wandboard_ISP.cpp”,line=”50″,thread-groups=[“i1″],times=”0″,original-location=”main”}
    -gdb-set solib-search-path /tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/Wandboard_ISP/Debug:/tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/ISP_Lib/Debug
    ^done
    -gdb-show sysroot
    ^done,value=”target:”
    -gdb-show debug-file-directory
    ^done,value=”/usr/lib/debug”
    -gdb-set debug-file-directory target:/usr/lib/debug
    ^done
    -inferior-tty-set /dev/pts/18
    ^done
    set output-radix 16
    &”set output-radix 16\n”
    ~”Output radix now set to decimal 16, hex 10, octal 20.\n”
    =cmd-param-changed,param=”output-radix”,value=”16″
    ^done
    info target
    &”info target\n”
    ~”Symbols from \”/tmp/Wandboard_ISP\”.\n”
    ~”Local exec file:\n”
    ~”\t`/tmp/Wandboard_ISP’, file type elf32-littlearm.\n”
    ~”\tEntry point: 0x106a0\n”
    ~”\t0x00010134 – 0x0001014d is .interp\n”
    ~”\t0x00010150 – 0x00010170 is .note.ABI-tag\n”
    ~”\t0x00010170 – 0x00010194 is .note.gnu.build-id\n”
    ~”\t0x00010194 – 0x0001023c is .gnu.hash\n”
    ~”\t0x0001023c – 0x000103ac is .dynsym\n”
    ~”\t0x000103ac – 0x00010553 is .dynstr\n”
    ~”\t0x00010554 – 0x00010582 is .gnu.version\n”
    ~”\t0x00010584 – 0x000105c4 is .gnu.version_r\n”
    ~”\t0x000105c4 – 0x000105cc is .rel.dyn\n”
    ~”\t0x000105cc – 0x00010614 is .rel.plt\n”
    ~”\t0x00010614 – 0x00010620 is .init\n”
    ~”\t0x00010620 – 0x000106a0 is .plt\n”
    ~”\t0x000106a0 – 0x000109c8 is .text\n”
    ~”\t0x000109c8 – 0x000109d0 is .fini\n”
    ~”\t0x000109d0 – 0x00010ad6 is .rodata\n”
    ~”\t0x00010ad8 – 0x00010af0 is .ARM.extab\n”
    ~”\t0x00010af0 – 0x00010b10 is .ARM.exidx\n”
    ~”\t0x00010b10 – 0x00010b14 is .eh_frame\n”
    ~”\t0x00020b14 – 0x00020b18 is .init_array\n”
    ~”\t0x00020b18 – 0x00020b1c is .fini_array\n”
    ~”\t0x00020b1c – 0x00020b20 is .jcr\n”
    ~”\t0x00020b20 – 0x00020c38 is .dynamic\n”
    ~”\t0x00020c38 – 0x00020c6c is .got\n”
    ~”\t0x00020c6c – 0x00020c78 is .data\n”
    ~”\t0x00020c78 – 0x00020c80 is .bss\n”
    ^done
    -break-insert -f /tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/ISP_Lib/ISP_Lib.cpp:485
    &”No source file named /tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/ISP_Lib/ISP_Lib.cpp.\n”
    ^done,bkpt={number=”2″,type=”breakpoint”,disp=”keep”,enabled=”y”,addr=”<PENDING>”,pending=”/tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/ISP_Lib/ISP_Lib.cpp:485″,times=”0″,original-location=”/tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/ISP_Lib/ISP_Lib.cpp:485″}
    -file-list-exec-source-files
    ^done,files=[{file=”Wandboard_ISP.cpp”,fullname=”/tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/Wandboard_ISP/Wandboard_ISP.cpp”},{file=”/opt/poky/2.1.1/sysroots/x86_64-pokysdk-linux/usr/lib/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/5.3.0/include/stddef.h”,fullname=”/opt/poky/2.1.1/sysroots/x86_64-pokysdk-linux/usr/lib/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/5.3.0/include/stddef.h”},{file=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/bits/types.h”,fullname=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/bits/types.h”},{file=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/stdio.h”,fullname=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/stdio.h”},{file=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/libio.h”,fullname=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/libio.h”},{file=”../ISP_Lib/ISP_Lib_Errors.h”,fullname=”/tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/Wandboard_ISP/../ISP_Lib/ISP_Lib_Errors.h”},{file=”../ISP_Lib/headers/WinTypes.h”,fullname=”/tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/Wandboard_ISP/../ISP_Lib/headers/WinTypes.h”},{file=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/bits/confname.h”,fullname=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/bits/confname.h”},{file=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/pthread.h”,fullname=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/pthread.h”},{file=”../ISP_Lib/headers/ftd2xx.h”,fullname=”/tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/Wandboard_ISP/../ISP_Lib/headers/ftd2xx.h”},{file=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/bits/fcntl-linux.h”,fullname=”/opt/poky/2.1.1/sysroots/cortexa9hf-neon-poky-linux-gnueabi/usr/include/bits/fcntl-linux.h”},{file=”../sysdeps/arm/crtn.S”,fullname=”/usr/src/debug/glibc/2.23-r0/git/sysdeps/arm/crtn.S”},{file=”/usr/src/debug/glibc/2.23-r0/git/csu/elf-init.c”,fullname=”/usr/src/debug/glibc/2.23-r0/git/csu/elf-init.c”},{file=”../sysdeps/arm/crti.S”,fullname=”/usr/src/debug/glibc/2.23-r0/git/sysdeps/arm/crti.S”},{file=”/usr/src/debug/glibc/2.23-r0/git/csu/init.c”,fullname=”/usr/src/debug/glibc/2.23-r0/git/csu/init.c”},{file=”../sysdeps/arm/start.S”,fullname=”/usr/src/debug/glibc/2.23-r0/git/sysdeps/arm/start.S”}]
    -break-after 2 0
    ^done
    -break-insert -f /tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/Wandboard_ISP/Wandboard_ISP.cpp:62
    ^done,bkpt={number=”3″,type=”breakpoint”,disp=”keep”,enabled=”y”,addr=”0x00010878″,func=”main(int, char**)”,file=”Wandboard_ISP.cpp”,fullname=”/tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/Wandboard_ISP/Wandboard_ISP.cpp”,line=”62″,thread-groups=[“i1″],times=”0″,original-location=”/tmp/VisualGDB/c/DataRoot/Projects/isp-library-and-application/Wandboard_ISP/Wandboard_ISP.cpp:62″}
    -break-after 3 0
    ^done
    info symbol 0x10878
    &”info symbol 0x10878\n”
    ~”main + 92 in section .text\n”
    ^done
    info line *0x10878
    &”info line *0x10878\n”
    ~”Line 62 of \”Wandboard_ISP.cpp\” starts at address 0x10878 <main(int, char**)+92> and ends at 0x10884 <main(int, char**)+104>.\n”
    ^done
    info signals
    &”info signals\n”
    ~”Signal Stop\tPrint\tPass to program\tDescription\n”
    ~”\n”
    ~”SIGHUP Yes\tYes\tYes\t\tHangup\n”
    ~”SIGINT Yes\tYes\tNo\t\tInterrupt\n”
    ~”SIGQUIT Yes\tYes\tYes\t\tQuit\n”
    ~”SIGILL Yes\tYes\tYes\t\tIllegal instruction\n”
    ~”SIGTRAP Yes\tYes\tNo\t\tTrace/breakpoint trap\n”
    ~”SIGABRT Yes\tYes\tYes\t\tAborted\n”
    ~”SIGEMT Yes\tYes\tYes\t\tEmulation trap\n”
    ~”SIGFPE Yes\tYes\tYes\t\tArithmetic exception\n”
    ~”SIGKILL Yes\tYes\tYes\t\tKilled\n”
    ~”SIGBUS Yes\tYes\tYes\t\tBus error\n”
    ~”SIGSEGV Yes\tYes\tYes\t\tSegmentation fault\n”
    ~”SIGSYS Yes\tYes\tYes\t\tBad system call\n”
    ~”SIGPIPE Yes\tYes\tYes\t\tBroken pipe\n”
    ~”SIGALRM No\tNo\tYes\t\tAlarm clock\n”
    ~”SIGTERM Yes\tYes\tYes\t\tTerminated\n”
    ~”SIGURG No\tNo\tYes\t\tUrgent I/O condition\n”
    ~”SIGSTOP Yes\tYes\tYes\t\tStopped (signal)\n”
    ~”SIGTSTP Yes\tYes\tYes\t\tStopped (user)\n”
    ~”SIGCONT Yes\tYes\tYes\t\tContinued\n”
    ~”SIGCHLD No\tNo\tYes\t\tChild status changed\n”
    ~”SIGTTIN Yes\tYes\tYes\t\tStopped (tty input)\n”
    ~”SIGTTOU Yes\tYes\tYes\t\tStopped (tty output)\n”
    ~”SIGIO No\tNo\tYes\t\tI/O possible\n”
    ~”SIGXCPU Yes\tYes\tYes\t\tCPU time limit exceeded\n”
    ~”SIGXFSZ Yes\tYes\tYes\t\tFile size limit exceeded\n”
    ~”SIGVTALRM No\tNo\tYes\t\tVirtual timer expired\n”
    ~”SIGPROF No\tNo\tYes\t\tProfiling timer expired\n”
    ~”SIGWINCH No\tNo\tYes\t\tWindow size changed\n”
    ~”SIGLOST Yes\tYes\tYes\t\tResource lost\n”
    ~”SIGUSR1 Yes\tYes\tYes\t\tUser defined signal 1\n”
    ~”SIGUSR2 Yes\tYes\tYes\t\tUser defined signal 2\n”
    ~”SIGPWR Yes\tYes\tYes\t\tPower fail/restart\n”
    ~”SIGPOLL No\tNo\tYes\t\tPollable event occurred\n”
    ~”SIGWIND Yes\tYes\tYes\t\tSIGWIND\n”
    ~”SIGPHONE Yes\tYes\tYes\t\tSIGPHONE\n”
    ~”SIGWAITING No\tNo\tYes\t\tProcess’s LWPs are blocked\n”
    ~”SIGLWP No\tNo\tYes\t\tSignal LWP\n”
    ~”SIGDANGER Yes\tYes\tYes\t\tSwap space dangerously low\n”
    ~”SIGGRANT Yes\tYes\tYes\t\tMonitor mode granted\n”
    ~”SIGRETRACT Yes\tYes\tYes\t\tNeed to relinquish monitor mode\n”
    ~”SIGMSG Yes\tYes\tYes\t\tMonitor mode data available\n”
    ~”SIGSOUND Yes\tYes\tYes\t\tSound completed\n”
    ~”SIGSAK Yes\tYes\tYes\t\tSecure attention\n”
    ~”SIGPRIO No\tNo\tYes\t\tSIGPRIO\n”
    ~”SIG33 Yes\tYes\tYes\t\tReal-time event 33\n”
    ~”SIG34 Yes\tYes\tYes\t\tReal-time event 34\n”
    ~”SIG35 Yes\tYes\tYes\t\tReal-time event 35\n”
    ~”SIG36 Yes\tYes\tYes\t\tReal-time event 36\n”
    ~”SIG37 Yes\tYes\tYes\t\tReal-time event 37\n”
    ~”SIG38 Yes\tYes\tYes\t\tReal-time event 38\n”
    ~”SIG39 Yes\tYes\tYes\t\tReal-time event 39\n”
    ~”SIG40 Yes\tYes\tYes\t\tReal-time event 40\n”
    ~”SIG41 Yes\tYes\tYes\t\tReal-time event 41\n”
    ~”SIG42 Yes\tYes\tYes\t\tReal-time event 42\n”
    ~”SIG43 Yes\tYes\tYes\t\tReal-time event 43\n”
    ~”SIG44 Yes\tYes\tYes\t\tReal-time event 44\n”
    ~”SIG45 Yes\tYes\tYes\t\tReal-time event 45\n”
    ~”SIG46 Yes\tYes\tYes\t\tReal-time event 46\n”
    ~”SIG47 Yes\tYes\tYes\t\tReal-time event 47\n”
    ~”SIG48 Yes\tYes\tYes\t\tReal-time event 48\n”
    ~”SIG49 Yes\tYes\tYes\t\tReal-time event 49\n”
    ~”SIG50 Yes\tYes\tYes\t\tReal-time event 50\n”
    ~”SIG51 Yes\tYes\tYes\t\tReal-time event 51\n”
    ~”SIG52 Yes\tYes\tYes\t\tReal-time event 52\n”
    ~”SIG53 Yes\tYes\tYes\t\tReal-time event 53\n”
    ~”SIG54 Yes\tYes\tYes\t\tReal-time event 54\n”
    ~”SIG55 Yes\tYes\tYes\t\tReal-time event 55\n”
    ~”SIG56 Yes\tYes\tYes\t\tReal-time event 56\n”
    ~”SIG57 Yes\tYes\tYes\t\tReal-time event 57\n”
    ~”SIG58 Yes\tYes\tYes\t\tReal-time event 58\n”
    ~”SIG59 Yes\tYes\tYes\t\tReal-time event 59\n”
    ~”SIG60 Yes\tYes\tYes\t\tReal-time event 60\n”
    ~”SIG61 Yes\tYes\tYes\t\tReal-time event 61\n”
    ~”SIG62 Yes\tYes\tYes\t\tReal-time event 62\n”
    ~”SIG63 Yes\tYes\tYes\t\tReal-time event 63\n”
    ~”SIGCANCEL No\tNo\tYes\t\tLWP internal signal\n”
    ~”SIG32 Yes\tYes\tYes\t\tReal-time event 32\n”
    ~”SIG64 Yes\tYes\tYes\t\tReal-time event 64\n”
    ~”SIG65 Yes\tYes\tYes\t\tReal-time event 65\n”
    ~”SIG66 Yes\tYes\tYes\t\tReal-time event 66\n”
    ~”SIG67 Yes\tYes\tYes\t\tReal-time event 67\n”
    ~”SIG68 Yes\tYes\tYes\t\tReal-time event 68\n”
    ~”SIG69 Yes\tYes\tYes\t\tReal-time event 69\n”
    ~”SIG70 Yes\tYes\tYes\t\tReal-time event 70\n”
    ~”SIG71 Yes\tYes\tYes\t\tReal-time event 71\n”
    ~”SIG72 Yes\tYes\tYes\t\tReal-time event 72\n”
    ~”SIG73 Yes\tYes\tYes\t\tReal-time event 73\n”
    ~”SIG74 Yes\tYes\tYes\t\tReal-time event 74\n”
    ~”SIG75 Yes\tYes\tYes\t\tReal-time event 75\n”
    ~”SIG76 Yes\tYes\tYes\t\tReal-time event 76\n”
    ~”SIG77 Yes\tYes\tYes\t\tReal-time event 77\n”
    ~”SIG78 Yes\tYes\tYes\t\tReal-time event 78\n”
    ~”SIG79 Yes\tYes\tYes\t\tReal-time event 79\n”
    ~”SIG80 Yes\tYes\tYes\t\tReal-time event 80\n”
    ~”SIG81 Yes\tYes\tYes\t\tReal-time event 81\n”
    ~”SIG82 Yes\tYes\tYes\t\tReal-time event 82\n”
    ~”SIG83 Yes\tYes\tYes\t\tReal-time event 83\n”
    ~”SIG84 Yes\tYes\tYes\t\tReal-time event 84\n”
    ~”SIG85 Yes\tYes\tYes\t\tReal-time event 85\n”
    ~”SIG86 Yes\tYes\tYes\t\tReal-time event 86\n”
    ~”SIG87 Yes\tYes\tYes\t\tReal-time event 87\n”
    ~”SIG88 Yes\tYes\tYes\t\tReal-time event 88\n”
    ~”SIG89 Yes\tYes\tYes\t\tReal-time event 89\n”
    ~”SIG90 Yes\tYes\tYes\t\tReal-time event 90\n”
    ~”SIG91 Yes\tYes\tYes\t\tReal-time event 91\n”
    ~”SIG92 Yes\tYes\tYes\t\tReal-time event 92\n”
    ~”SIG93 Yes\tYes\tYes\t\tReal-time event 93\n”
    ~”SIG94 Yes\tYes\tYes\t\tReal-time event 94\n”
    ~”SIG95 Yes\tYes\tYes\t\tReal-time event 95\n”
    ~”SIG96 Yes\tYes\tYes\t\tReal-time event 96\n”
    ~”SIG97 Yes\tYes\tYes\t\tReal-time event 97\n”
    ~”SIG98 Yes\tYes\tYes\t\tReal-time event 98\n”
    ~”SIG99 Yes\tYes\tYes\t\tReal-time event 99\n”
    ~”SIG100 Yes\tYes\tYes\t\tReal-time event 100\n”
    ~”SIG101 Yes\tYes\tYes\t\tReal-time event 101\n”
    ~”SIG102 Yes\tYes\tYes\t\tReal-time event 102\n”
    ~”SIG103 Yes\tYes\tYes\t\tReal-time event 103\n”
    ~”SIG104 Yes\tYes\tYes\t\tReal-time event 104\n”
    ~”SIG105 Yes\tYes\tYes\t\tReal-time event 105\n”
    ~”SIG106 Yes\tYes\tYes\t\tReal-time event 106\n”
    ~”SIG107 Yes\tYes\tYes\t\tReal-time event 107\n”
    ~”SIG108 Yes\tYes\tYes\t\tReal-time event 108\n”
    ~”SIG109 Yes\tYes\tYes\t\tReal-time event 109\n”
    ~”SIG110 Yes\tYes\tYes\t\tReal-time event 110\n”
    ~”SIG111 Yes\tYes\tYes\t\tReal-time event 111\n”
    ~”SIG112 Yes\tYes\tYes\t\tReal-time event 112\n”
    ~”SIG113 Yes\tYes\tYes\t\tReal-time event 113\n”
    ~”SIG114 Yes\tYes\tYes\t\tReal-time event 114\n”
    ~”SIG115 Yes\tYes\tYes\t\tReal-time event 115\n”
    ~”SIG116 Yes\tYes\tYes\t\tReal-time event 116\n”
    ~”SIG117 Yes\tYes\tYes\t\tReal-time event 117\n”
    ~”SIG118 Yes\tYes\tYes\t\tReal-time event 118\n”
    ~”SIG119 Yes\tYes\tYes\t\tReal-time event 119\n”
    ~”SIG120 Yes\tYes\tYes\t\tReal-time event 120\n”
    ~”SIG121 Yes\tYes\tYes\t\tReal-time event 121\n”
    ~”SIG122 Yes\tYes\tYes\t\tReal-time event 122\n”
    ~”SIG123 Yes\tYes\tYes\t\tReal-time event 123\n”
    ~”SIG124 Yes\tYes\tYes\t\tReal-time event 124\n”
    ~”SIG125 Yes\tYes\tYes\t\tReal-time event 125\n”
    ~”SIG126 Yes\tYes\tYes\t\tReal-time event 126\n”
    ~”SIG127 Yes\tYes\tYes\t\tReal-time event 127\n”
    ~”SIGINFO Yes\tYes\tYes\t\tInformation request\n”
    ~”EXC_BAD_ACCESS Yes\tYes\tYes\t\tCould not access memory\n”
    ~”EXC_BAD_INSTRUCTION Yes\tYes\tYes\t\tIllegal instruction/operand\n”
    ~”EXC_ARITHMETIC Yes\tYes\tYes\t\tArithmetic exception\n”
    ~”EXC_EMULATION Yes\tYes\tYes\t\tEmulation instruction\n”
    ~”EXC_SOFTWARE Yes\tYes\tYes\t\tSoftware generated exception\n”
    ~”EXC_BREAKPOINT Yes\tYes\tYes\t\tBreakpoint\n”
    ~”SIGLIBRT No\tNo\tYes\t\tlibrt internal signal\n”
    ~”\nUse the \”handle\” command to change these tables.\n”
    ^done
    -data-evaluate-expression “sizeof(void *)”
    ^done,value=”0x4″
    handle SIGUSR1 nostop
    &”handle SIGUSR1 nostop\n”
    ~”Signal Stop\tPrint\tPass to program\tDescription\n”
    ~”SIGUSR1 No\tYes\tYes\t\tUser defined signal 1\n”
    ^done
    handle SIGUSR2 nostop
    &”handle SIGUSR2 nostop\n”
    ~”Signal Stop\tPrint\tPass to program\tDescription\n”
    ~”SIGUSR2 No\tYes\tYes\t\tUser defined signal 2\n”
    ^done
    -exec-run
    &”/dev/pts/18: No such file or directory.\n”
    =thread-group-started,id=”i1″,pid=”4411″
    =thread-created,id=”1″,group-id=”i1″
    =thread-exited,id=”1″,group-id=”i1″
    =thread-group-exited,id=”i1″
    ^error,msg=”During startup program exited with code 1.”

    in reply to: Debugging Child Process #9651
    sidprice
    Participant

    One note, I am debugging an application and a shared library, the use of the target’s GDB is only in the project properties of the application. Do I need to change the properties of the library as well?

    Sid

Viewing 15 posts - 91 through 105 (of 126 total)