Changeset 299 for trunk/hal/tsar_mips32
- Timestamp:
- Jul 31, 2017, 2:19:12 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_uspace.c
r121 r299 128 128 129 129 ////////////////////////////////////////// 130 voidhal_strcpy_from_uspace( char * k_dst,131 char * u_src,132 uint32_t max_size )133 134 { 135 136 // TODO implement the max_size handling 130 error_t hal_strcpy_from_uspace( char * k_dst, 131 char * u_src, 132 uint32_t max_size ) 133 134 { 135 136 // TODO implement the max_size handling, and error handling 137 137 138 138 uint32_t save_sr; … … 159 159 hal_restore_irq( save_sr ); 160 160 161 return 0; 161 162 } // hal_strcpy_from_uspace() 162 163 163 164 //////////////////////////////////////////// 164 voidhal_strcpy_to_uspace( char * u_dst,165 char * k_src,166 uint32_t max_size )167 { 168 169 // TODO implement the max_size handling 165 error_t hal_strcpy_to_uspace( char * u_dst, 166 char * k_src, 167 uint32_t max_size ) 168 { 169 170 // TODO implement the max_size handling, and error handling 170 171 171 172 uint32_t save_sr; … … 192 193 hal_restore_irq( save_sr ); 193 194 194 } // hal_strcpy_from_uspace() 195 return 0; 196 } // hal_strcpy_to_uspace() 195 197 196 198 ///////////////////////////////////////////////
Note: See TracChangeset
for help on using the changeset viewer.