ports/113948: [PATCH] Add poll() to qstat

[ Available lists | Index of freebsd-ports-bugs | Month of Jun 2007 | Week of 22 Jun 2007 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Gary Stanley <gary@velocity-servers.net>
Date
22 Jun 2007 15:50:09
Subject
ports/113948: [PATCH] Add poll() to qstat
Message-ID
200706221543.l5MFhLBd018472@www.freebsd.org


[ Hide this part ]
 
>Number: 113948
>Category: ports
>Synopsis: [PATCH] Add poll() to qstat
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: change-request
>Submitter-Id: current-users
>Arrival-Date: Fri Jun 22 15:50:08 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator: Gary Stanley
>Release:
>Organization:
>Environment:
FreeBSD granite.eroded.org 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jan 12 11:05:30 UTC 2007 root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP i386
>Description:
In qstat.c, we check for USE_POLL, OpenBSD is defined and FreeBSD should be defined as well. This adds poll() support to qstat.

Patch is tested and works.

before;
90741 qstat CALL select(0x4,0x807abc0,0,0,0xbfbfea88)
90741 qstat RET select 1

after;
93117 qstat CALL poll(0x8080200,0x1,0x3e8)
93117 qstat RET poll 1


>How-To-Repeat:

>Fix:


Patch attached with submission follows:

--- qstat.c.orig Sat Oct 22 05:20:07 2005
+++ qstat.c Fri Jun 22 09:57:21 2007
@@ -120,6 +120,10 @@
#define USE_POLL
#include <sys/poll.h>
#endif
+#ifdef __FreeBSD__
+#define USE_POLL
+#include <sys/poll.h>
+#endif
#ifdef __OpenBSD__
#define USE_POLL
#include <sys/poll.h>

>Release-Note:
>Audit-Trail:
>Unformatted:


Elapsed time: 0.104 seconds