You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2007/10/05 07:24:40 UTC

svn commit: r582079 - /webservices/axis2/trunk/c/util/include/axutil_allocator.h

Author: samisa
Date: Thu Oct  4 22:24:39 2007
New Revision: 582079

URL: http://svn.apache.org/viewvc?rev=582079&view=rev
Log:
Fixed some spelling mistakes

Modified:
    webservices/axis2/trunk/c/util/include/axutil_allocator.h

Modified: webservices/axis2/trunk/c/util/include/axutil_allocator.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/include/axutil_allocator.h?rev=582079&r1=582078&r2=582079&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/include/axutil_allocator.h (original)
+++ webservices/axis2/trunk/c/util/include/axutil_allocator.h Thu Oct  4 22:24:39 2007
@@ -59,7 +59,7 @@
                 size_t size);
 
         /**
-         * Function pointer representing the function that re-llocates memory.
+         * Function pointer representing the function that re-allocates memory.
          * @param allocator pointer to allocator struct. In the default 
          * implementation this is not used, however this parameter is useful 
          * when the allocator implementation is dealing with a memory pool.
@@ -95,7 +95,7 @@
         void *local_pool;
 
         /** 
-         * Global memory pool. Globale pool is used to allocate values that 
+         * Global memory pool. Global pool is used to allocate values that 
          * live beyond a request 
          */
         void *global_pool;
@@ -104,7 +104,7 @@
          * Memory pool currently in use. The functions
          * axutil_allocator_switch_to_global_pool and
          * axutil_allocator_switch_to_local_pool should be used to 
-         * set the current pool to globle pool or to local pool respectively. 
+         * set the current pool to global pool or to local pool respectively. 
          */
         void *current_pool;
     }
@@ -112,7 +112,7 @@
 
     /**
      * Initializes (creates) a memory allocator.
-     * @param allocator user defined allcator. If NULL, a default allocator 
+     * @param allocator user defined allocator. If NULL, a default allocator 
      * will be returned.
      * @return initialized allocator. NULL on error.
      */
@@ -133,10 +133,10 @@
     /**
      * Swaps the local_pool and global_pool and makes the global pool the 
      * current pool.
-     * In case of using pools, local_pool is suppoed to hold the pool out of which
+     * In case of using pools, local_pool is supposed to hold the pool out of which
      * local values are allocated. In case of values that live beyond a request 
-     * globle pool should be used, hence this method has to be called to swithch to 
-     * globle pool for allocation. 
+     * global pool should be used, hence this method has to be called to switch to 
+     * global pool for allocation. 
      * @param allocator allocator whose memory pools are to be switched
      * @return void
       */
@@ -147,9 +147,9 @@
     /**
      * Swaps the local_pool and global_pool and makes the local pool the 
      * current pool. 
-     * In case of using pools, local_pool is suppoed to hold the pool out of which
+     * In case of using pools, local_pool is supposed to hold the pool out of which
      * local values are allocated. In case of values that live beyond a request 
-     * globle pool should be used. This method can be used to inverse the switching 
+     * global pool should be used. This method can be used to inverse the switching 
      * done by axutil_allocator_switch_to_global_pool, to start using the local pool again.
      * @param allocator allocator whose memory pools are to be switched
      * @return void



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org