Changeset 566 for trunk/kernel/syscalls/sys_isatty.c
- Timestamp:
- Oct 4, 2018, 11:50:21 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_isatty.c
r506 r566 89 89 90 90 // get file type 91 vfs_inode_type_t type = hal_remote_l w( XPTR( file_cxy , &file_ptr->type ) );91 vfs_inode_type_t type = hal_remote_l32( XPTR( file_cxy , &file_ptr->type ) ); 92 92 93 93 // action depend on file type … … 104 104 105 105 // get chdev type 106 chdev_func = hal_remote_l w( XPTR( chdev_cxy , &chdev_ptr->func ) );106 chdev_func = hal_remote_l32( XPTR( chdev_cxy , &chdev_ptr->func ) ); 107 107 108 108 if( chdev_func == DEV_FUNC_TXT ) retval = 1;
Note: See TracChangeset
for help on using the changeset viewer.