[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:18:34 CDT 2011


branch "master" has been updated
       via  c06dbbefb20ab2f3bb3b2fbdf1eb714d304af928 (commit)
      from  1580f446b72d71abf9d49ec938d4b58e96d65792 (commit)

Summary of changes:
 AsteriskSCF/System/ThreadPool/ThreadPoolIf.ice |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


- Log -----------------------------------------------------------------
commit c06dbbefb20ab2f3bb3b2fbdf1eb714d304af928
Author: David M. Lee <dlee at digium.com>
Date:   Fri May 6 11:16:25 2011 -0500

    More long-instead-of-int changes.
    
    ints weren't large enough to hold size_t for 64-bit systems.

diff --git a/AsteriskSCF/System/ThreadPool/ThreadPoolIf.ice b/AsteriskSCF/System/ThreadPool/ThreadPoolIf.ice
index 1d2d978..e3081ec 100644
--- a/AsteriskSCF/System/ThreadPool/ThreadPoolIf.ice
+++ b/AsteriskSCF/System/ThreadPool/ThreadPoolIf.ice
@@ -78,7 +78,7 @@ module V1
          * that are still executing work but are marked for destruction as soon as they
          * finish.
          */
-        void stateChanged(Pool tpool, int activeThreads, int idleThreads, int zombieThreads);
+        void stateChanged(Pool tpool, long activeThreads, long idleThreads, long zombieThreads);
 
         /**
          * Indicates that the Pool's queue has had work added to it.

-----------------------------------------------------------------------


-- 
asterisk-scf/release/slice.git



More information about the asterisk-scf-commits mailing list