- Timestamp:
- Jan 22, 2007 7:10:17 PM (18 years ago)
- Location:
- pjproject/trunk/pjlib/src/pj
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/os_core_unix.c
r840 r896 508 508 #if PJ_HAS_THREADS 509 509 pj_thread_t *rec = pj_thread_local_get(thread_tls_id); 510 pj_assert(rec != NULL); 510 511 if (rec == NULL) { 512 pj_assert(!"Calling pjlib from unknown/external thread. You must " 513 "register external threads with pj_thread_register() " 514 "before calling any pjlib functions."); 515 } 511 516 512 517 /* -
pjproject/trunk/pjlib/src/pj/os_core_win32.c
r839 r896 430 430 { 431 431 pj_thread_t *rec = pj_thread_local_get(thread_tls_id); 432 pj_assert(rec != NULL); 432 433 if (rec == NULL) { 434 pj_assert(!"Calling pjlib from unknown/external thread. You must " 435 "register external threads with pj_thread_register() " 436 "before calling any pjlib functions."); 437 } 433 438 434 439 /*
Note: See TracChangeset
for help on using the changeset viewer.