Changeset 4323:4313296dd84c in roaraudio


Ignore:
Timestamp:
09/07/10 18:31:38 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

init and free notify core

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/roard.c

    r4246 r4323  
    13351335 roar_libroar_get_config(); 
    13361336 
     1337 // init notify core: 
     1338 // TODO: reconsider number of lists. 
     1339 if ( roar_notify_core_new_global(-1) == -1 ) { 
     1340  ROAR_ERR("Can not init notify core!"); 
     1341  return 1; 
     1342 } 
     1343 
    13371344#ifdef ROAR_SUPPORT_LISTEN 
    13381345 if ( init_listening() == -1 ) { 
     
    22412248 output_buffer_free(); 
    22422249 
     2250 roar_notify_core_free(NULL); 
     2251 
    22432252 ROAR_INFO("Exiting, no error", ROAR_DBG_INFO_INFO); 
    22442253 return 0; 
     
    23252334// output_buffer_free(); 
    23262335 
     2336 roar_notify_core_free(NULL); 
     2337 
    23272338 ROAR_INFO("Exiting, no error", ROAR_DBG_INFO_INFO); 
    23282339 exit(0); 
Note: See TracChangeset for help on using the changeset viewer.