Ignore:
Timestamp:
Jul 23, 2006 2:38:49 PM (18 years ago)
Author:
bennylp
Message:

Added 64bit Linux target (x86_64), also fixed compilation warnings when compiling for this target

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/test-pjsip/transport_test.c

    r582 r624  
    490490static int rt_worker_thread(void *arg) 
    491491{ 
    492     int i, thread_id = (int)arg; 
     492    int i, thread_id = (int)(long)arg; 
    493493    pj_time_val poll_delay = { 0, 10 }; 
    494494 
     
    577577 
    578578        /* Create thread, suspended. */ 
    579         status = pj_thread_create(pool, "rttest%p", &rt_worker_thread, (void*)i, 0, 
     579        status = pj_thread_create(pool, "rttest%p", &rt_worker_thread, (void*)(long)i, 0, 
    580580                                  PJ_THREAD_SUSPENDED, &rt_test_data[i].thread); 
    581581        if (status != PJ_SUCCESS) { 
Note: See TracChangeset for help on using the changeset viewer.