From: Ben Gras Date: Mon, 21 Sep 2009 14:46:42 +0000 (+0000) Subject: clever hack to avoid starting from 0 disabled because X-Git-Tag: v3.1.5~123 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=90be3a051fc60e56dedbe85ea8e681beb120ec31;p=minix.git clever hack to avoid starting from 0 disabled because when own 0-pages are mapped out, this doesn't work and isn't necessary. --- diff --git a/servers/inet/inet_config.c b/servers/inet/inet_config.c index b8794c0f0..2005e22dc 100644 --- a/servers/inet/inet_config.c +++ b/servers/inet/inet_config.c @@ -219,7 +219,9 @@ void read_conf(void) { static int first= 1; if (!first) ip_panic(( "read_conf: called a second time" )); first= 0; +#if 0 *(u8_t *)0 = 0xcc; /* INT 3 */ +#endif }