Changeset 637 for trunk/kernel/fs/devfs.c
- Timestamp:
- Jul 18, 2019, 2:06:55 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/fs/devfs.c
r635 r637 675 675 676 676 // move burst bytes from k_buf to u_buf 677 hal_strcpy_to_uspace( u_buf , k_buf , burst ); 677 hal_strcpy_to_uspace( u_buf, 678 XPTR( local_cxy , k_buf ), 679 burst ); 678 680 679 681 // update loop variables … … 704 706 705 707 // move burst bytes from u_buf to k_buf 706 hal_strcpy_from_uspace( k_buf, u_buf , burst );708 hal_strcpy_from_uspace( XPTR( local_cxy , k_buf ) , u_buf , burst ); 707 709 708 710 // write burst bytes from kernel buffer to TXT device
Note: See TracChangeset
for help on using the changeset viewer.