ports/113949: [PATCH] qstat poll() support

gary at velocity-servers.net gary at velocity-servers.net
Fri Jun 22 16:00:12 UTC 2007


>Number:         113949
>Category:       ports
>Synopsis:       [PATCH] qstat poll() support
>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 16:00:09 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Gary Stanley
>Release:        FreeBSD 6.2-STABLE i386
>Organization:
>Environment:
System: FreeBSD longhorn.velocity-servers.net 6.2-STABLE FreeBSD 6.2-STABLE #1: Fri Feb 2 09:44:40 CST 2007 root at longhorn.velocity-servers.net:/usr/obj/usr/src/sys/Gary.6 i386


	
>Description:
	In qstat.c, we check for USE_POLL, OpenBSD is defined and FreeBSD should be defined as well. This adds
        support to qstat for POLL on FreeBSD 
	 
>How-To-Repeat:
	
>Fix:

	This rough patch should be added, 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


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



More information about the freebsd-ports-bugs mailing list