From owner-soc-status@FreeBSD.ORG Sun Jun 22 21:42:31 2014 Return-Path: Delivered-To: soc-status@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16AA7EAE for ; Sun, 22 Jun 2014 21:42:31 +0000 (UTC) Received: from mx1.mail.bg (mx1.mail.bg [IPv6:2001:67c:16b8:1::2:17]) by mx1.freebsd.org (Postfix) with ESMTP id C287928C3 for ; Sun, 22 Jun 2014 21:42:30 +0000 (UTC) Received: from [192.168.0.2] (unknown [78.90.84.177]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mx1.mail.bg (Postfix) with ESMTPSA id 2633D60003F0 for ; Mon, 23 Jun 2014 00:42:27 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=mail.bg; s=default; t=1403473347; bh=kl2R4SYIxP1Z+nI0FkKQHBWI24g01JGWWK/YVoOPGSE=; h=Content-Type:Mime-Version:Subject:From:In-Reply-To:Date: Content-Transfer-Encoding:Message-Id:References:To; b=s6hQ0g1oDZCFVEyDCeQMMnctw1Q+U+0pKU5ueCzM1VA38OTQvORsi4kUmbq61/CnP r6R90oTPoIpa15kgL1DA+sMH5U4rXFtqtTcvMtSdp4S3Ofn6A+A2TdnzbvZXi5H4zo 6oN+0NU166JnIy+gWpTKrrkKG3w+oA6foNVF1dNk= Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1283) Subject: Re: [Machine readable output from userland utilities] report From: Zaro Korchev In-Reply-To: <5AF0FF20-E41B-4D46-A427-D84D9E2CD047@mail.bg> Date: Mon, 23 Jun 2014 00:42:26 +0300 Content-Transfer-Encoding: quoted-printable Message-Id: References: <8D1B686D-1AAA-4E07-9270-E42699110561@mail.bg> <2F779B73-EAC5-49B4-B3E8-7A81109EC166@mail.bg> <5AF0FF20-E41B-4D46-A427-D84D9E2CD047@mail.bg> To: soc-status@freebsd.org X-Mailer: Apple Mail (2.1283) X-BeenThere: soc-status@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Summer of Code Status Reports and Discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Jun 2014 21:42:31 -0000 Hi everybody This week I worked on libsol and sysctl. I also fixed some problems with = the tools I already have converted. I added support for big unsigned integers in libsol. This fixes a bug = leading to big numbers being displayed as negative in several cases. = This will also allow to use hexadecimal numbers in formats that support = them. I made the necessary changes to make the tools use the unsigned = integer type when necessary. I implemented format detection in libsol. The initialization function = that is called from each tool looks up the environment variable = SOL_FORMAT to decide which format to use. The applications using libsol = don't need to be aware of the format. I made the tools with libsol use = this new initialization. I made some changes on when libsol flushes the output to make it fully = streamable. I added support for libsol in sysctl. I did some improvements on the other tools - vmstat, fstat and netstat. Zaro=