Changeset 408 for trunk/kernel/devices/dev_txt.c
- Timestamp:
- Dec 5, 2017, 4:20:07 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/devices/dev_txt.c
r407 r408 93 93 txt->server = new_thread; 94 94 95 // start server thread 96 thread_block( new_thread , THREAD_BLOCKED_DEV_QUEUE ); 95 // set "chdev" field in thread descriptor 96 new_thread->chdev = txt; 97 98 // unblock server thread 97 99 thread_unblock( XPTR( local_cxy , new_thread ) , THREAD_BLOCKED_GLOBAL ); 98 100 }
Note: See TracChangeset
for help on using the changeset viewer.