]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
vroom
authorAnthony Minessale <anthony.minessale@gmail.com>
Tue, 23 Oct 2007 00:11:03 +0000 (00:11 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Tue, 23 Oct 2007 00:11:03 +0000 (00:11 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6022 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_core_memory.c
src/switch_core_session.c

index 25d2a8ccda54bb91107e1428934dafd8b5107621..62ccfc656499be72e66d1183d4b2bd1e098fbd61 100644 (file)
@@ -282,7 +282,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_perform_destroy_memory_pool(switch_m
        printf("Free Pool %s %s:%d\n", file, func, line);
 #endif
 
-       if (switch_queue_trypush(memory_manager.pool_queue, *pool) != SWITCH_STATUS_SUCCESS) {
+       if (switch_queue_push(memory_manager.pool_queue, *pool) != SWITCH_STATUS_SUCCESS) {
                apr_pool_destroy(*pool);
        }
        *pool = NULL;
index 0a283781027b40311cc0e359d6dda2d6e631c74d..3b1a523fa1f7fd9aa302bc232a0e546c342bed41 100644 (file)
@@ -768,35 +768,27 @@ SWITCH_DECLARE(switch_core_session_t *) switch_core_session_request(const switch
        if (pool && *pool) {
                usepool = *pool;
                *pool = NULL;
-       } else if (switch_core_new_memory_pool(&usepool) != SWITCH_STATUS_SUCCESS) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Could not allocate memory pool\n");
-               return NULL;
+       } else {
+               switch_core_new_memory_pool(&usepool);
        }
 
-       if ((session = switch_core_alloc(usepool, sizeof(switch_core_session_t))) == 0) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Could not allocate session\n");
-               switch_core_destroy_memory_pool(&usepool);
-               return NULL;
-       }
 
-       if (switch_channel_alloc(&session->channel, usepool) != SWITCH_STATUS_SUCCESS) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Could not allocate channel structure\n");
-               switch_core_destroy_memory_pool(&usepool);
-               return NULL;
+       session = switch_core_alloc(usepool, sizeof(*session));
+       session->pool = usepool;
+       
+       if (switch_channel_alloc(&session->channel, session->pool) != SWITCH_STATUS_SUCCESS) {
+               abort();
        }
 
-
        switch_channel_init(session->channel, session, CS_NEW, 0);
 
+
        /* The session *IS* the pool you may not alter it because you have no idea how
           its all private it will be passed to the thread run function */
 
        switch_uuid_get(&uuid);
        switch_uuid_format(session->uuid_str, &uuid);
-
-       session->pool = usepool;
        session->endpoint_interface = endpoint_interface;
-
        session->raw_write_frame.data = session->raw_write_buf;
        session->raw_write_frame.buflen = sizeof(session->raw_write_buf);
        session->raw_read_frame.data = session->raw_read_buf;