aboutsummaryrefslogtreecommitdiff
path: root/procfs/proclist.c
diff options
context:
space:
mode:
authorJustus Winter <justus@gnupg.org>2017-06-19 21:20:57 +0200
committerJustus Winter <justus@gnupg.org>2017-08-05 18:42:22 +0200
commit835b293d35a209d38047126443d41fa7090daa4c (patch)
tree5bf956895e6030f91cd618fb191b2151f6d25423 /procfs/proclist.c
parentdc0b5a43224999223a246870912b0f292b1980e9 (diff)
downloadhurd-835b293d35a209d38047126443d41fa7090daa4c.tar.gz
hurd-835b293d35a209d38047126443d41fa7090daa4c.tar.bz2
hurd-835b293d35a209d38047126443d41fa7090daa4c.zip
Use our own variant of 'assert' and 'assert_perror'.
Our variants print stack traces on failures. This will make locating errors much easier.
Diffstat (limited to 'procfs/proclist.c')
-rw-r--r--procfs/proclist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/procfs/proclist.c b/procfs/proclist.c
index 58b942dc..1ecf75b2 100644
--- a/procfs/proclist.c
+++ b/procfs/proclist.c
@@ -49,7 +49,7 @@ proclist_get_contents (void *hook, char **contents, ssize_t *contents_len)
for (i=0; i < num_pids; i++)
{
int n = sprintf (*contents + *contents_len, "%d", pids[i]);
- assert (n >= 0);
+ assert_backtrace (n >= 0);
*contents_len += (n + 1);
}
}
@@ -68,7 +68,7 @@ proclist_lookup (void *hook, const char *name, struct node **np)
pid_t pid;
/* Self-lookups should not end up here. */
- assert (name[0]);
+ assert_backtrace (name[0]);
/* No leading zeros allowed */
if (name[0] == '0' && name[1])