svn commit: r425032 - in branches/2016Q4/games/xmris: . files
Jason E. Hale
jhale at FreeBSD.org
Mon Oct 31 21:52:52 UTC 2016
Author: jhale
Date: Mon Oct 31 21:52:51 2016
New Revision: 425032
URL: https://svnweb.freebsd.org/changeset/ports/425032
Log:
MFH: r424989
Fix 100% CPU utilization (runtime tested on FreeBSD 11.0, i386)
Bump PORTREVISION
PR: 211791
Submitted by: <steven at freebsd-bugzilla.sdwmail.homeunix.org>
Approved by: ports-secteam (feld)
Modified:
branches/2016Q4/games/xmris/Makefile
branches/2016Q4/games/xmris/files/patch-timer.c
Directory Properties:
branches/2016Q4/ (props changed)
Modified: branches/2016Q4/games/xmris/Makefile
==============================================================================
--- branches/2016Q4/games/xmris/Makefile Mon Oct 31 21:51:26 2016 (r425031)
+++ branches/2016Q4/games/xmris/Makefile Mon Oct 31 21:52:51 2016 (r425032)
@@ -3,7 +3,7 @@
PORTNAME= xmris
PORTVERSION= 4.04
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= games
MASTER_SITES= XCONTRIB/games
DISTNAME= ${PORTNAME}.${PORTVERSION}
Modified: branches/2016Q4/games/xmris/files/patch-timer.c
==============================================================================
--- branches/2016Q4/games/xmris/files/patch-timer.c Mon Oct 31 21:51:26 2016 (r425031)
+++ branches/2016Q4/games/xmris/files/patch-timer.c Mon Oct 31 21:52:51 2016 (r425032)
@@ -9,3 +9,14 @@
#else
# ifdef __hpux /* hpux is a weird mixture of BSD & SYSV */
/* don't know if this is right */
+@@ -572,7 +572,10 @@ extern VOIDFUNC timer_wait FUNCARGVOID
+ else
+ {
+ while(!tickafter(now, timer.timeout))
++ {
++ usleep(tickdelta(timer.timeout, now) * TICKTIME);
+ gettick(&now);
++ }
+ timer.timeout = tickadd(timer.timeout, timer.delay);
+ point = -1;
+ }
More information about the svn-ports-all
mailing list