diff options
author | Justus Winter <justus@gnupg.org> | 2017-06-19 21:20:57 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2017-08-05 18:42:22 +0200 |
commit | 835b293d35a209d38047126443d41fa7090daa4c (patch) | |
tree | 5bf956895e6030f91cd618fb191b2151f6d25423 /libps | |
parent | dc0b5a43224999223a246870912b0f292b1980e9 (diff) | |
download | hurd-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 'libps')
-rw-r--r-- | libps/context.c | 2 | ||||
-rw-r--r-- | libps/filters.c | 2 | ||||
-rw-r--r-- | libps/fmt.c | 2 | ||||
-rw-r--r-- | libps/host.c | 2 | ||||
-rw-r--r-- | libps/proclist.c | 2 | ||||
-rw-r--r-- | libps/procstat.c | 2 | ||||
-rw-r--r-- | libps/spec.c | 3 | ||||
-rw-r--r-- | libps/tty.c | 2 | ||||
-rw-r--r-- | libps/user.c | 2 |
9 files changed, 10 insertions, 9 deletions
diff --git a/libps/context.c b/libps/context.c index 3082d83b..8ed15943 100644 --- a/libps/context.c +++ b/libps/context.c @@ -21,7 +21,7 @@ #include <hurd.h> #include <stdio.h> #include <stdlib.h> -#include <assert.h> +#include <assert-backtrace.h> #include <hurd/term.h> #include "ps.h" diff --git a/libps/filters.c b/libps/filters.c index 6663e61e..1bc5a0e6 100644 --- a/libps/filters.c +++ b/libps/filters.c @@ -21,7 +21,7 @@ #include <hurd.h> #include <stdio.h> #include <stdlib.h> -#include <assert.h> +#include <assert-backtrace.h> #include <pwd.h> #include <unistd.h> diff --git a/libps/fmt.c b/libps/fmt.c index f9142123..cd838852 100644 --- a/libps/fmt.c +++ b/libps/fmt.c @@ -21,7 +21,7 @@ #include <stdio.h> #include <stdlib.h> -#include <assert.h> +#include <assert-backtrace.h> #include <string.h> #include <ctype.h> diff --git a/libps/host.c b/libps/host.c index 9a46e008..120e5c49 100644 --- a/libps/host.c +++ b/libps/host.c @@ -21,7 +21,7 @@ #include <hurd.h> #include <stdio.h> #include <stdlib.h> -#include <assert.h> +#include <assert-backtrace.h> #include "ps.h" #include "common.h" diff --git a/libps/proclist.c b/libps/proclist.c index 9a4d6ed5..50aed73a 100644 --- a/libps/proclist.c +++ b/libps/proclist.c @@ -21,7 +21,7 @@ #include <hurd.h> #include <stdio.h> #include <stdlib.h> -#include <assert.h> +#include <assert-backtrace.h> #include <string.h> #include "ps.h" diff --git a/libps/procstat.c b/libps/procstat.c index 9f488cd6..c6c3a44f 100644 --- a/libps/procstat.c +++ b/libps/procstat.c @@ -20,7 +20,7 @@ #include <hurd.h> #include <stdio.h> #include <stdlib.h> -#include <assert.h> +#include <assert-backtrace.h> #include <string.h> #include "ps.h" diff --git a/libps/spec.c b/libps/spec.c index bfee34ea..4a6e226f 100644 --- a/libps/spec.c +++ b/libps/spec.c @@ -21,7 +21,8 @@ #include <hurd.h> #include <stdio.h> #include <stdlib.h> -#include <assert.h> +#include <assert-backtrace.h> +#define assert assert_backtrace #include <pwd.h> #include <hurd/resource.h> #include <unistd.h> diff --git a/libps/tty.c b/libps/tty.c index 3ab72ee8..92f8f3e3 100644 --- a/libps/tty.c +++ b/libps/tty.c @@ -22,7 +22,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <assert.h> +#include <assert-backtrace.h> #include <hurd/term.h> #include "ps.h" diff --git a/libps/user.c b/libps/user.c index 0b87ace3..f5b7edc6 100644 --- a/libps/user.c +++ b/libps/user.c @@ -22,7 +22,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <assert.h> +#include <assert-backtrace.h> #include "ps.h" #include "common.h" |