Changeset 1841 for pjproject/trunk/pjlib/src/pj/os_core_symbian.cpp
- Timestamp:
- Mar 4, 2008 2:45:19 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/os_core_symbian.cpp
r1651 r1841 485 485 } 486 486 487 488 /* 489 * Get thread priority value for the thread. 490 */ 491 PJ_DEF(int) pj_thread_get_prio(pj_thread_t *thread) 492 { 493 PJ_UNUSED_ARG(thread); 494 return 1; 495 } 496 497 498 /* 499 * Set the thread priority. 500 */ 501 PJ_DEF(pj_status_t) pj_thread_set_prio(pj_thread_t *thread, int prio) 502 { 503 PJ_UNUSED_ARG(thread); 504 PJ_UNUSED_ARG(prio); 505 return PJ_SUCCESS; 506 } 507 508 509 /* 510 * Get the lowest priority value available on this system. 511 */ 512 PJ_DEF(int) pj_thread_get_prio_min(pj_thread_t *thread) 513 { 514 PJ_UNUSED_ARG(thread); 515 return 1; 516 } 517 518 519 /* 520 * Get the highest priority value available on this system. 521 */ 522 PJ_DEF(int) pj_thread_get_prio_max(pj_thread_t *thread) 523 { 524 PJ_UNUSED_ARG(thread); 525 return 1; 526 } 527 528 487 529 /* 488 530 * pj_thread_get_os_handle()
Note: See TracChangeset
for help on using the changeset viewer.