Changes in src/libcfa/concurrency/kernel.c [6a5be52:d67cdb7]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/kernel.c
r6a5be52 rd67cdb7 548 548 549 549 int len = snprintf( abort_text, abort_text_size, "Error occurred while executing task %.256s (%p)", thrd->self_cor.name, thrd ); 550 __lib_debug_write( abort_text, len );550 __lib_debug_write( STDERR_FILENO, abort_text, len ); 551 551 552 552 if ( thrd != this_coroutine ) { 553 553 len = snprintf( abort_text, abort_text_size, " in coroutine %.256s (%p).\n", this_coroutine->name, this_coroutine ); 554 __lib_debug_write( abort_text, len );554 __lib_debug_write( STDERR_FILENO, abort_text, len ); 555 555 } 556 556 else { 557 __lib_debug_write( ".\n", 2 );557 __lib_debug_write( STDERR_FILENO, ".\n", 2 ); 558 558 } 559 559 }
Note:
See TracChangeset
for help on using the changeset viewer.