[asterisk-scf-commits] asterisk-scf/release/slice.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Fri May 6 11:07:55 CDT 2011
branch "master" has been updated
via 1580f446b72d71abf9d49ec938d4b58e96d65792 (commit)
via 98b9c735d7af93117d6320c5df05d200659f5161 (commit)
from 1443edddb16e1ac462e51a1accbac8f225117356 (commit)
Summary of changes:
AsteriskSCF/System/ThreadPool/ThreadPoolIf.ice | 2 +-
AsteriskSCF/System/WorkQueue/WorkQueueIf.ice | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
- Log -----------------------------------------------------------------
commit 1580f446b72d71abf9d49ec938d4b58e96d65792
Merge: 98b9c73 1443edd
Author: Mark Michelson <mmichelson at digium.com>
Date: Fri May 6 11:07:55 2011 -0500
Merge branch 'master' of git.asterisk.org:asterisk-scf/release/slice
commit 98b9c735d7af93117d6320c5df05d200659f5161
Author: Mark Michelson <mmichelson at digium.com>
Date: Fri May 6 11:07:36 2011 -0500
Use long instead of int for sizes of queues.
diff --git a/AsteriskSCF/System/ThreadPool/ThreadPoolIf.ice b/AsteriskSCF/System/ThreadPool/ThreadPoolIf.ice
index c3e9c9f..1d2d978 100644
--- a/AsteriskSCF/System/ThreadPool/ThreadPoolIf.ice
+++ b/AsteriskSCF/System/ThreadPool/ThreadPoolIf.ice
@@ -88,7 +88,7 @@ module V1
* @param wasEmpty True if the Queue was empty prior to the addition of
* new Work. False otherwise.
*/
- void queueWorkAdded(Pool tpool, int newWorkCount, bool wasEmpty);
+ void queueWorkAdded(Pool tpool, long newWorkCount, bool wasEmpty);
/**
* Indicates that the Pool's queue is empty
diff --git a/AsteriskSCF/System/WorkQueue/WorkQueueIf.ice b/AsteriskSCF/System/WorkQueue/WorkQueueIf.ice
index d4ad1a3..d5ba6a3 100644
--- a/AsteriskSCF/System/WorkQueue/WorkQueueIf.ice
+++ b/AsteriskSCF/System/WorkQueue/WorkQueueIf.ice
@@ -43,7 +43,7 @@ module V1
* @param wasEmpty True if the queue was empty prior
* to the addition of the work. False otherwise.
*/
- void workAdded(int numNewWork, bool wasEmpty);
+ void workAdded(long numNewWork, bool wasEmpty);
/**
* Indicates that suspended work may be resumed
@@ -134,7 +134,7 @@ module V1
*
* @return The number of Work objects in the Queue
*/
- int getSize();
+ long getSize();
/**
* Set a new QueueListener
@@ -254,7 +254,7 @@ module V1
* @return The number of SuspendableWork objects in the
* SuspendableQueue
*/
- int getSize();
+ long getSize();
/**
* Set a new QueueListener
-----------------------------------------------------------------------
--
asterisk-scf/release/slice.git
More information about the asterisk-scf-commits
mailing list