Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Jun 2007 15:43:21 GMT
From:      Gary Stanley <gary@velocity-servers.net>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/113948: [PATCH] Add poll() to qstat
Message-ID:  <200706221543.l5MFhLBd018472@www.freebsd.org>
Resent-Message-ID: <200706221550.l5MFo82h047297@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200706221543.l5MFhLBd018472>