Changeset 16 for trunk/kernel/syscalls
- Timestamp:
- May 10, 2017, 5:04:01 PM (8 years ago)
- Location:
- trunk/kernel/syscalls
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_thread_exit.c
r1 r16 32 32 int sys_thread_exit ( void * exit_val ) 33 33 { 34 thread_t * this = current_thread;35 c pu_t * cpu = current_cpu;36 uint32_t state;37 bool_t isEmpty;38 bool_t isReleased;34 thread_t * this = CURRENT_THREAD; 35 core_t * core = this->core; 36 bool_t isEmpty; 37 bool_t isReleased; 38 uint32_t irq_state; 39 39 40 /* TODO: the cpu->lid must match the core index in the logical cluster */ 41 if(this->process->pid != 1) 42 dqdt_update_threads_number( local_cxy , cpu->lid , -1 ); 40 // update DQDT TODO must be done by thread destroy 41 if(this->process->pid != 1) dqdt_local_update_threads( -1 ); 43 42 44 43 spinlock_lock( &this->lock ); … … 46 45 if(!(thread_isJoinable(this))) 47 46 { 48 spinlock_unlock_nosched(&this->lock);49 47 goto exit_dead; 50 48 } 51 49 52 // Check if there's a thread waiting the end of call eethread50 // Check if there's a thread waiting the end of calling thread 53 51 isEmpty = wait_queue_isEmpty(&this->info.wait_queue); 54 52 … … 72 70 73 71 // Release FPU if required 74 cpu_disable_all_irq(&state);75 if(c urrent_cpu->fpu_owner == this)72 hal_disable_irq( &irq_state ); 73 if(core->fpu_owner == this) 76 74 { 77 c urrent_cpu->fpu_owner = NULL;75 core->fpu_owner = NULL; 78 76 isReleased = true; 79 77 } 80 cpu_restore_irq(state);78 hal_restore_irq( irq_state ); 81 79 82 80 if(isReleased) -
trunk/kernel/syscalls/syscalls.h
r1 r16 1 1 /* 2 * syscall .h - kernel services definition2 * syscalls.h - kernel services definition 3 3 * 4 4 * Author Ghassan Almaless (2007,2008,2009,2010,2011,2012) … … 23 23 */ 24 24 25 #ifndef _SYSCALL _H_26 #define _SYSCALL _H_25 #ifndef _SYSCALLS_H_ 26 #define _SYSCALLS_H_ 27 27 28 28 /****************************************************************************************** 29 * This enum defines the system calls index.30 * It must be kept consist ant with the syscall vector defined in sys_vector.c file.29 * This enum defines the mnemonics for the syscall indexes. 30 * It must be kept consistent with the array defined in do_syscalls.c 31 31 *****************************************************************************************/ 32 32 enum … … 90 90 /********************************************************************************************/ 91 91 92 /********************************************************************************************* 93 * This function TODO 92 93 /********************************************************************************************* 94 * [0] This function TODO 95 ********************************************************************************************/ 96 int sys_thread_exit( void * ); 97 98 /********************************************************************************************* 99 * [1] This function TODO 100 ********************************************************************************************/ 101 int sys_mmap(); 102 103 /********************************************************************************************* 104 * [2] This function TODO 105 ********************************************************************************************/ 106 int sys_thread_create(); 107 108 /********************************************************************************************* 109 * [3] This function TODO 110 ********************************************************************************************/ 111 int sys_thread_join(); 112 113 /********************************************************************************************* 114 * [4] This function TODO 115 ********************************************************************************************/ 116 int sys_thread_detach(); 117 118 /********************************************************************************************* 119 * [5] This function TODO 120 ********************************************************************************************/ 121 int sys_thread_yield(); 122 123 /********************************************************************************************* 124 * [6] This function TODO 125 ********************************************************************************************/ 126 int sys_sem(); 127 128 /********************************************************************************************* 129 * [7] This function TODO 130 ********************************************************************************************/ 131 int sys_cond_var(); 132 133 /********************************************************************************************* 134 * [8] This function TODO 135 ********************************************************************************************/ 136 int sys_barrier(); 137 138 /********************************************************************************************* 139 * [9] This function TODO 140 ********************************************************************************************/ 141 int sys_rwlock(); 142 143 /********************************************************************************************* 144 * [10] This function TODO 145 ********************************************************************************************/ 146 int sys_thread_sleep(); 147 148 /********************************************************************************************* 149 * [11] This function TODO 150 ********************************************************************************************/ 151 int sys_thread_wakeup(); 152 153 /********************************************************************************************* 154 * [12] This function TODO 155 ********************************************************************************************/ 156 int sys_open(); 157 158 /********************************************************************************************* 159 * [13] This function TODO 160 ********************************************************************************************/ 161 int sys_creat(); 162 163 /********************************************************************************************* 164 * [14] This function TODO 165 ********************************************************************************************/ 166 int sys_read(); 167 168 /********************************************************************************************* 169 * [15] This function TODO 170 ********************************************************************************************/ 171 int sys_write(); 172 173 /********************************************************************************************* 174 * [16] This function TODO 175 ********************************************************************************************/ 176 int sys_lseek(); 177 178 /********************************************************************************************* 179 * [17] This function TODO 180 ********************************************************************************************/ 181 int sys_close(); 182 183 /********************************************************************************************* 184 * [18] This function TODO 185 ********************************************************************************************/ 186 int sys_unlink(); 187 188 /********************************************************************************************* 189 * [19] This function TODO 190 ********************************************************************************************/ 191 int sys_pipe(); 192 193 /********************************************************************************************* 194 * [20] This function TODO 195 ********************************************************************************************/ 196 int sys_chdir(); 197 198 /********************************************************************************************* 199 * [21] This function TODO 200 ********************************************************************************************/ 201 int sys_mkdir(); 202 203 /********************************************************************************************* 204 * [22] This function TODO 205 ********************************************************************************************/ 206 int sys_mkfifo(); 207 208 /********************************************************************************************* 209 * [23] This function TODO 210 ********************************************************************************************/ 211 int sys_opendir(); 212 213 /********************************************************************************************* 214 * [24] This function TODO 215 ********************************************************************************************/ 216 int sys_readdir(); 217 218 /********************************************************************************************* 219 * [25] This function TODO 220 ********************************************************************************************/ 221 int sys_closedir(); 222 223 /********************************************************************************************* 224 * [26] This function TODO 225 ********************************************************************************************/ 226 int sys_getcwd(); 227 228 /********************************************************************************************* 229 * [27] This function TODO 230 ********************************************************************************************/ 231 int sys_clock(); 232 233 /********************************************************************************************* 234 * [28] This function TODO 235 ********************************************************************************************/ 236 int sys_alarm(); 237 238 /********************************************************************************************* 239 * [29] This function TODO 240 ********************************************************************************************/ 241 int sys_dma_memcpy(); 242 243 /********************************************************************************************* 244 * [30] This function TODO 245 ********************************************************************************************/ 246 int sys_utls(); 247 248 /********************************************************************************************* 249 * [31] This function TODO 250 ********************************************************************************************/ 251 int sys_notAvailable(); 252 253 /********************************************************************************************* 254 * [32] This function TODO 255 ********************************************************************************************/ 256 int sys_signal(); 257 258 /********************************************************************************************* 259 * [33] This function TODO 260 ********************************************************************************************/ 261 int sys_sigreturn_setup(); 262 263 /********************************************************************************************* 264 * [34] This function implements the "kill" system call. 265 * It register the signal identified by the <sig> argument in all thread descriptors 266 * of process identified by the <pid> argument. 267 ********************************************************************************************* 268 * @ pid : target process identifier. 269 * @ sig : signal index. 270 ********************************************************************************************/ 271 int sys_kill( pid_t pid, 272 uint32_t sig ); 273 274 /********************************************************************************************* 275 * [35] This function TODO 94 276 ********************************************************************************************/ 95 277 int sys_getpid(); 96 278 97 279 /********************************************************************************************* 98 * This function implement the "fork" system call.280 * [36] This function implement the "fork" system call. 99 281 * The calling process descriptor (parent process), and the associated thread descriptor are 100 282 * replicated in the same cluster as the calling thread, but the new process (child process) … … 111 293 112 294 /********************************************************************************************* 113 * This function implement the execsystem call.295 * [37] This function implement the "exec" system call. 114 296 * It is executed in the client cluster, but the new process descriptor and main thread 115 297 * must be created in a server cluster, that is generally another cluster, using a RPC. … … 124 306 * required to build the new process descriptor and the associated thread, including 125 307 * the mode (local/remote). 308 ********************************************************************************************* 126 309 * @ filename : string pointer on .elf filename (virtual pointer in user space) 127 310 * @ argv : array of strings on process arguments (virtual pointers in user space) … … 133 316 char ** envp ); 134 317 135 136 /********************************************************************************************* 137 * This function TODO 318 /********************************************************************************************* 319 * [38] This function TODO 320 ********************************************************************************************/ 321 int sys_thread_getattr(); 322 323 /********************************************************************************************* 324 * [39] This function implements the ps system call. 138 325 ********************************************************************************************/ 139 326 int sys_ps( uint32_t cmd, … … 141 328 uint32_t tid ); 142 329 143 144 145 #endif 330 /********************************************************************************************* 331 * [40] This function TODO 332 ********************************************************************************************/ 333 int sys_madvise(); 334 335 /********************************************************************************************* 336 * [41] This function TODO 337 ********************************************************************************************/ 338 int sys_mcntl(); 339 340 /********************************************************************************************* 341 * [42] This function TODO 342 ********************************************************************************************/ 343 int sys_stat(); 344 345 /********************************************************************************************* 346 * [43] This function TODO 347 ********************************************************************************************/ 348 int sys_thread_migrate(); 349 350 /********************************************************************************************* 351 * [44] This function TODO 352 ********************************************************************************************/ 353 int sys_sbrk(); 354 355 /********************************************************************************************* 356 * [45] This function TODO 357 ********************************************************************************************/ 358 int sys_rmdir(); 359 360 /********************************************************************************************* 361 * [46] This function TODO 362 ********************************************************************************************/ 363 int sys_ftime(); 364 365 /********************************************************************************************* 366 * [47] This function TODO 367 ********************************************************************************************/ 368 int sys_chmod(); 369 370 /********************************************************************************************* 371 * [48] This function TODO 372 ********************************************************************************************/ 373 int sys_fsync(); 374 375 /********************************************************************************************* 376 * [49] This function TODO 377 ********************************************************************************************/ 378 int sys_gettimeofday(); 379 380 /********************************************************************************************* 381 * [50] This function TODO 382 ********************************************************************************************/ 383 int sys_times(); 384 385 386 #endif // _SYSCALLS_H_
Note: See TracChangeset
for help on using the changeset viewer.