Changeset 1651 for pjproject/trunk/pjlib/src/pj/os_core_symbian.cpp
- Timestamp:
- Jan 2, 2008 8:19:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/os_core_symbian.cpp
r1642 r1651 314 314 PJ_DEF(pj_status_t) pj_init(void) 315 315 { 316 char stack_ptr; 316 317 pj_status_t status; 317 318 … … 337 338 if (status != PJ_SUCCESS) 338 339 goto on_error; 340 341 #if defined(PJ_OS_HAS_CHECK_STACK) && PJ_OS_HAS_CHECK_STACK!=0 342 main_thread.stk_start = &stack_ptr; 343 main_thread.stk_size = 0xFFFFFFFFUL; 344 main_thread.stk_max_usage = 0; 345 #else 346 stack_ptr = '\0'; 347 #endif 339 348 340 349 PJ_LOG(5,(THIS_FILE, "PJLIB initialized."));
Note: See TracChangeset
for help on using the changeset viewer.