Synchronet v3.19b-Win32 (install) has been released (Jan-2022).

You can donate to the Synchronet project using PayPal.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
howto:gdb [2019/05/07 15:10] – [Debugging] mention "bt full" and "-ex run -args" and such digital manhowto:gdb [2021/04/02 18:17] – Add [Root Access] details digital man
Line 79: Line 79:
 **TIP:**\\ **TIP:**\\
 To run Synchronet (non-daemonized) directly from the GNU debugger without having to type "run" at a ''(gdb)'' prompt: To run Synchronet (non-daemonized) directly from the GNU debugger without having to type "run" at a ''(gdb)'' prompt:
-  # gdb -ex run -args sbbs -nd+  # gdb -ex run --args sbbs -nd 
 + 
 +==== Root Access ==== 
 + 
 +If the ''sbbs'' process was started as root, you may need root privileges to attached with ''gdb'': 
 + 
 +  Attaching to process 21848 
 +  ptrace: Operation not permitted. 
 +  (gdb) 
 +   
 +If you get this error, try attaching again as root (e.g. run with ''sudo gdb'').
  
 ==== Handling SIGPIPE ==== ==== Handling SIGPIPE ====