You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
428 B
22 lines
428 B
8 years ago
|
#include <ccan/str/str.h>
|
||
|
#include <lightningd/debug.h>
|
||
|
#include <stdio.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
void subdaemon_debug(int argc, char *argv[])
|
||
|
{
|
||
|
int i;
|
||
|
bool printed = false;
|
||
|
|
||
|
/* From debugger, tell gdb "return". */
|
||
|
for (i = 1; i < argc; i++) {
|
||
|
while (streq(argv[i], "--debugger")) {
|
||
|
if (!printed)
|
||
|
fprintf(stderr, "gdb -ex 'attach %u' %s\n",
|
||
|
getpid(), argv[0]);
|
||
|
printed = true;
|
||
|
}
|
||
|
}
|
||
|
}
|