Date: Sun, 14 May 1995 19:49:53 +0300 From: Kai Vorma <vode@snakemail.hut.fi> To: current@FreeBSD.org Subject: A few things.. Message-ID: <199505141649.TAA20757@vinkku.hut.fi>
next in thread | raw e-mail | index | archive | help
1) Prototype for madvise() is missing from sys/mman.h 2) rpcgen doesn't set up proc list properly and may crash. Here is a patch: *** rpc_parse.c~ Sun Aug 7 21:01:32 1994 --- rpc_parse.c Sun May 14 18:13:32 1995 *************** *** 165,170 **** --- 165,171 ---- ptailp = &plist->next; peek(&tok); } while (tok.kind != TOK_RBRACE); + *ptailp = NULL; *vtailp = vlist; vtailp = &vlist->next; scan(TOK_RBRACE, &tok); 3) Reboot doesn't always work. The new keyboard controller reset code in cpu_reset() sometimes just hangs my machine (a nameless 486 clone) and I have to push reset button to get it alive again. The old way worked always. 4) This patch teaches info to read gzipped files (emacs info already works) so one can gzip files in /usr/share/info and save a few megabytes diskspace. *** gnu/usr.bin/texinfo/info/filesys.c~ Tue Sep 13 16:51:29 1994 --- gnu/usr.bin/texinfo/info/filesys.c Sun May 14 19:27:52 1995 *************** *** 76,81 **** --- 76,82 ---- static COMPRESSION_ALIST compress_suffixes[] = { { ".Z", "uncompress" }, { ".Y", "unyabba" }, + { ".gz", "gunzip" }, { ".z", "gunzip" }, { (char *)NULL, (char *)NULL } }; ..vode
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199505141649.TAA20757>