From owner-freebsd-current Sun May 14 09:50:04 1995 Return-Path: current-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id JAA16962 for current-outgoing; Sun, 14 May 1995 09:50:04 -0700 Received: from vinkku.hut.fi (vode@vinkku.hut.fi [130.233.245.1]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id JAA16956 for ; Sun, 14 May 1995 09:50:02 -0700 Received: (from vode@localhost) by vinkku.hut.fi (8.6.11/8.6.7) id TAA20757; Sun, 14 May 1995 19:49:53 +0300 Date: Sun, 14 May 1995 19:49:53 +0300 From: Kai Vorma Message-Id: <199505141649.TAA20757@vinkku.hut.fi> To: current@FreeBSD.org Subject: A few things.. Reply-to: Kai.Vorma@hut.fi Sender: current-owner@FreeBSD.org Precedence: bulk 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