Changeset 637 for trunk/user/ksh/ksh.c
- Timestamp:
- Jul 18, 2019, 2:06:55 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/user/ksh/ksh.c
r636 r637 1186 1186 char cmd[CMD_MAX_SIZE]; // buffer for one command 1187 1187 1188 / /1. first direct command1188 /* 1. first direct command 1189 1189 if( sem_wait( &semaphore ) ) 1190 1190 { … … 1199 1199 strcpy( cmd , "load bin/user/sort.elf" ); 1200 1200 execute( cmd ); 1201 //1202 1203 1204 1205 / /2. second direct command1201 */ 1202 1203 1204 1205 /* 2. second direct command 1206 1206 if( sem_wait( &semaphore ) ) 1207 1207 { … … 1216 1216 strcpy( cmd , "load bin/user/fft.elf" ); 1217 1217 execute( cmd ); 1218 //1218 */ 1219 1219 1220 1220 … … 1455 1455 // get KSH process pid and core 1456 1456 parent_pid = getpid(); 1457 get_core ( &cxy , &lid );1457 get_core_id( &cxy , &lid ); 1458 1458 1459 1459 #if DEBUG_MAIN
Note: See TracChangeset
for help on using the changeset viewer.