From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.lisp.guile.devel Subject: More Posix stuff on Windows Date: Mon, 30 Jun 2014 18:11:54 +0300 Message-ID: <83zjgu4ekl.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1404141154 27084 80.91.229.3 (30 Jun 2014 15:12:34 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 30 Jun 2014 15:12:34 +0000 (UTC) Cc: Mark H Weaver , guile-devel@gnu.org To: ludo@gnu.org (Ludovic =?iso-8859-1?Q?Court=E8s?=) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Jun 30 17:12:27 2014 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1X1dFm-0003Pk-5P for guile-devel@m.gmane.org; Mon, 30 Jun 2014 17:12:22 +0200 Original-Received: from localhost ([::1]:34930 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1dFl-00077b-N1 for guile-devel@m.gmane.org; Mon, 30 Jun 2014 11:12:21 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53906) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1dFZ-00076a-8n for guile-devel@gnu.org; Mon, 30 Jun 2014 11:12:17 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X1dFR-0000RG-Ot for guile-devel@gnu.org; Mon, 30 Jun 2014 11:12:09 -0400 Original-Received: from mtaout29.012.net.il ([80.179.55.185]:58813) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1dFR-0000Qz-Gz; Mon, 30 Jun 2014 11:12:01 -0400 Original-Received: from conversion-daemon.mtaout29.012.net.il by mtaout29.012.net.il (HyperSendmail v2007.08) id <0N7Z00B00M5K2M00@mtaout29.012.net.il>; Mon, 30 Jun 2014 18:12:03 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout29.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0N7Z005C7M831V60@mtaout29.012.net.il>; Mon, 30 Jun 2014 18:12:03 +0300 (IDT) X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 80.179.55.185 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:17256 Archived-At: I'd like to add emulations of a couple of Posix functions to make a few Guile procedures available on Windows. Specifically, getaffinity, setaffinity, getpriority, and setpriority can work on Windows, once the emulations of the corresponding C APIs are written, which isn't hard. Is it OK to add those to win32-proc.c? (Perhaps the file should be renamed to posix-w32.c or some such now, since it is no longer only about processes.) If you agree, I will post the patches here.