aboutsummaryrefslogtreecommitdiff
path: root/eth-multiplexer
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 /eth-multiplexer
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 'eth-multiplexer')
-rw-r--r--eth-multiplexer/ethernet.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/eth-multiplexer/ethernet.c b/eth-multiplexer/ethernet.c
index 1f3a57c4..ce46c599 100644
--- a/eth-multiplexer/ethernet.c
+++ b/eth-multiplexer/ethernet.c
@@ -24,7 +24,7 @@
#include <string.h>
#include <error.h>
-#include <assert.h>
+#include <assert-backtrace.h>
#include <net/if.h>
#include <sys/ioctl.h>
@@ -112,7 +112,7 @@ get_ethernet_address (mach_port_t port, char *address)
error_t err;
int net_address[2];
size_t count = 2;
- assert (count * sizeof (int) >= ETH_ALEN);
+ assert_backtrace (count * sizeof (int) >= ETH_ALEN);
err = device_get_status (port, NET_ADDRESS, net_address, &count);
if (err)
@@ -130,7 +130,7 @@ int ethernet_open (char *dev_name, device_t master_device,
{
error_t err;
- assert (ether_port == MACH_PORT_NULL);
+ assert_backtrace (ether_port == MACH_PORT_NULL);
err = ports_create_port (etherreadclass, etherport_bucket,
sizeof (struct port_info), &readpt);