diff options
author | jhale <jhale@FreeBSD.org> | 2016-10-31 17:12:47 +0800 |
---|---|---|
committer | jhale <jhale@FreeBSD.org> | 2016-10-31 17:12:47 +0800 |
commit | 45c6b1041fef0e9f34a1e89b72e3335bb7e76f54 (patch) | |
tree | 55476a1b42f5bcac37f99cd1482c75ef5f7a2315 /games | |
parent | e02fed4fc7e1d8ae11382476e626d9ea2a162923 (diff) | |
download | freebsd-ports-gnome-45c6b1041fef0e9f34a1e89b72e3335bb7e76f54.tar.gz freebsd-ports-gnome-45c6b1041fef0e9f34a1e89b72e3335bb7e76f54.tar.zst freebsd-ports-gnome-45c6b1041fef0e9f34a1e89b72e3335bb7e76f54.zip |
Fix 100% CPU utilization (runtime tested on FreeBSD 11.0, i386)
Bump PORTREVISION
PR: 211791
Submitted by: <steven@freebsd-bugzilla.sdwmail.homeunix.org>
MFH: 2016Q4
Diffstat (limited to 'games')
-rw-r--r-- | games/xmris/Makefile | 2 | ||||
-rw-r--r-- | games/xmris/files/patch-timer.c | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/games/xmris/Makefile b/games/xmris/Makefile index 5bb21c6617d8..209c89e88e84 100644 --- a/games/xmris/Makefile +++ b/games/xmris/Makefile @@ -3,7 +3,7 @@ PORTNAME= xmris PORTVERSION= 4.04 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= XCONTRIB/games DISTNAME= ${PORTNAME}.${PORTVERSION} diff --git a/games/xmris/files/patch-timer.c b/games/xmris/files/patch-timer.c index 2bb57c41ed41..f2482ed1d734 100644 --- a/games/xmris/files/patch-timer.c +++ b/games/xmris/files/patch-timer.c @@ -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; + } |