unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 8ff13d6ac9e1409aeb6984450d0ce0f3391210c9 1248 bytes (raw)
name: debugger.c 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
 
/* debugger.c - Some debugger utilities for the notmuch mail library
 *
 * Copyright © 2009 Chris Wilson
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see http://www.gnu.org/licenses/ .
 *
 * Author: Chris Wilson <chris@chris-wilson.co.uk>
 */

#include "notmuch-client.h"

#include <libgen.h>

#if HAVE_VALGRIND
#include <valgrind.h>
#else
#define RUNNING_ON_VALGRIND 0
#endif

notmuch_bool_t
debugger_is_active (void)
{
    char buf[1024];

    if (RUNNING_ON_VALGRIND)
	return TRUE;

    sprintf (buf, "/proc/%d/exe", (int) getppid ());
    if (readlink (buf, buf, sizeof (buf)) != -1 &&
	strncmp (basename (buf), "gdb", 3) == 0)
    {
	return TRUE;
    }

    return FALSE;
}

debug log:

solving 8ff13d6 ...
found 8ff13d6 in https://yhetil.org/notmuch/1352859005-18631-10-git-send-email-blakej@foo.net/ ||
	https://yhetil.org/notmuch/1352142123-18286-10-git-send-email-blakej@foo.net/ ||
	https://yhetil.org/notmuch/1351998962-25135-10-git-send-email-blakej@foo.net/
found e8b9378 in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 e8b9378e73c31ce327bf93888052d3893223d52f	debugger.c

applying [1/1] https://yhetil.org/notmuch/1352859005-18631-10-git-send-email-blakej@foo.net/
diff --git a/debugger.c b/debugger.c
index e8b9378..8ff13d6 100644

Checking patch debugger.c...
Applied patch debugger.c cleanly.

skipping https://yhetil.org/notmuch/1352142123-18286-10-git-send-email-blakej@foo.net/ for 8ff13d6
skipping https://yhetil.org/notmuch/1351998962-25135-10-git-send-email-blakej@foo.net/ for 8ff13d6
index at:
100644 8ff13d6ac9e1409aeb6984450d0ce0f3391210c9	debugger.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).