[1] | 1 | /* |
---|
[407] | 2 | * syscalls.h - Kernel side services for syscall handling. |
---|
[1] | 3 | * |
---|
[657] | 4 | * Author Alain Greiner (2016,2017,2018,2019,2020) |
---|
[1] | 5 | * |
---|
| 6 | * Copyright (c) UPMC Sorbonne Universites |
---|
| 7 | * |
---|
| 8 | * This file is part of ALMOS-MKH. |
---|
| 9 | * |
---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 11 | * under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 13 | * |
---|
| 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 17 | * General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
| 20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
| 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 22 | */ |
---|
| 23 | |
---|
[16] | 24 | #ifndef _SYSCALLS_H_ |
---|
| 25 | #define _SYSCALLS_H_ |
---|
[1] | 26 | |
---|
[457] | 27 | #include <hal_kernel_types.h> |
---|
[407] | 28 | #include <shared_syscalls.h> |
---|
[23] | 29 | |
---|
[407] | 30 | /** Forward declarations *****/ |
---|
[23] | 31 | |
---|
| 32 | struct thread_s; // defined in thread.h |
---|
| 33 | struct pthread_attr_s; // defined in thread.h |
---|
| 34 | struct vfs_stat_s; // defined in vfs.h |
---|
| 35 | struct vfs_dirent_s; // defined in vfs.h |
---|
| 36 | struct mmap_attr_s; // defined in vmm.h |
---|
| 37 | |
---|
[16] | 38 | |
---|
[407] | 39 | /****************************************************************************************** |
---|
[670] | 40 | * This function forces the calling thread to sleep, for a fixed number of cycles. |
---|
[407] | 41 | ****************************************************************************************** |
---|
[670] | 42 | * cycles : number of cycles. |
---|
[407] | 43 | *****************************************************************************************/ |
---|
[670] | 44 | int sys_alarm( uint32_t cycles ); |
---|
[16] | 45 | |
---|
[407] | 46 | /****************************************************************************************** |
---|
[670] | 47 | * This function implement all operations on a POSIX barrier. |
---|
| 48 | * The kernel structure representing a barrier is defined in the remote_barrier.h file. |
---|
| 49 | * The code implementting the operations is defined in the remote_barrier.c file. |
---|
[407] | 50 | ****************************************************************************************** |
---|
[670] | 51 | * @ vaddr : barrier address in user space == identifier. |
---|
| 52 | * @ operation : BARRIER_INIT / BARRIER_DESTROY / BARRIER_WAIT. |
---|
| 53 | * @ count : number of expected threads (only used by BARRIER_INIT). |
---|
| 54 | * @ attr : barrier attributes address in user space (only used by BARRIER_INIT). |
---|
[23] | 55 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 56 | *****************************************************************************************/ |
---|
[670] | 57 | int sys_barrier( intptr_t vaddr, |
---|
| 58 | uint32_t operation, |
---|
| 59 | uint32_t count, |
---|
| 60 | intptr_t attr ); |
---|
[16] | 61 | |
---|
[407] | 62 | /****************************************************************************************** |
---|
[670] | 63 | * This function change the current working directory in reference process descriptor. |
---|
[407] | 64 | ****************************************************************************************** |
---|
[670] | 65 | * @ pathname : pathname (can be relative or absolute). |
---|
| 66 | * @ return 0 if success / returns -1 if failure. |
---|
[407] | 67 | *****************************************************************************************/ |
---|
[670] | 68 | int sys_chdir( char * pathname ); |
---|
[16] | 69 | |
---|
[407] | 70 | /****************************************************************************************** |
---|
[670] | 71 | * This function change the acces rights for the file/directory inode identified by the |
---|
| 72 | * <pathname> argument, as specified by the <mode> argument. |
---|
[407] | 73 | ****************************************************************************************** |
---|
[670] | 74 | * @ pathname : pathname (can be relative or absolute). |
---|
| 75 | * @ mode : acces rights. |
---|
| 76 | * @ return 0 if success / returns -1 if failure. |
---|
[407] | 77 | *****************************************************************************************/ |
---|
[670] | 78 | int sys_chmod( char * pathname, |
---|
| 79 | uint32_t mode ); |
---|
[16] | 80 | |
---|
[407] | 81 | /****************************************************************************************** |
---|
[670] | 82 | * This function release the memory allocated for the file descriptor identified by |
---|
| 83 | * the <file_id> argument, and remove the fd array_entry in all copies of the process |
---|
| 84 | * descriptor. |
---|
[409] | 85 | ****************************************************************************************** |
---|
[670] | 86 | file_id : file descriptor index in fd_array. |
---|
| 87 | * @ returns 0 if success / returns -1 if failure. |
---|
[407] | 88 | *****************************************************************************************/ |
---|
[670] | 89 | int sys_close( uint32_t file_id ); |
---|
[16] | 90 | |
---|
[407] | 91 | /****************************************************************************************** |
---|
[670] | 92 | * This function closes the directory identified by the <dirp> argument, and releases |
---|
| 93 | * all structures associated with the <dirp> pointer. |
---|
[407] | 94 | ****************************************************************************************** |
---|
[670] | 95 | * @ dirp : [in] user pointer on dirent array identifying the open directory. |
---|
| 96 | * @ return 0 if success / returns -1 if failure. |
---|
[407] | 97 | *****************************************************************************************/ |
---|
[670] | 98 | int sys_closedir( DIR * dirp ); |
---|
[16] | 99 | |
---|
[407] | 100 | /****************************************************************************************** |
---|
[670] | 101 | * This function implement all operations on a POSIX condition variable. |
---|
[566] | 102 | * The kernel structure representing a condvar is defined in the remote_condvar.h file, |
---|
| 103 | * The code implementing the operations is defined in the remote_condvar.c file. |
---|
[407] | 104 | ****************************************************************************************** |
---|
[23] | 105 | * @ vaddr : condvar virtual address in user space == identifier. |
---|
| 106 | * @ operation : operation type (see below). |
---|
| 107 | * @ attr : mutex virtual address in user space == identifier. |
---|
| 108 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 109 | *****************************************************************************************/ |
---|
[23] | 110 | int sys_condvar( void * condvar, |
---|
| 111 | uint32_t operation, |
---|
| 112 | void * mutex ); |
---|
[16] | 113 | |
---|
[407] | 114 | /****************************************************************************************** |
---|
[670] | 115 | * This debug function displays on the kernel terminal TXT0 an user defined string, |
---|
| 116 | * or the current state of a kernel structure, identified by the <type> argument. |
---|
| 117 | * The <arg0>, <arg1>, and <arg2> arguments depends on the structure type. |
---|
[407] | 118 | ****************************************************************************************** |
---|
[670] | 119 | * type : [in] type of display |
---|
| 120 | * arg0 : [in] type dependant argument. |
---|
| 121 | * arg1 : [in] type dependant argument. |
---|
| 122 | * arg2 : [in] type dependant argument. |
---|
| 123 | * @ return 0 if success / return -1 if illegal arguments |
---|
[407] | 124 | *****************************************************************************************/ |
---|
[670] | 125 | int sys_display( reg_t type, |
---|
| 126 | reg_t arg0, |
---|
| 127 | reg_t arg1, |
---|
| 128 | reg_t arg2 ); |
---|
[16] | 129 | |
---|
[407] | 130 | /****************************************************************************************** |
---|
[670] | 131 | * This function implement the "exec" system call on the kernel side. |
---|
| 132 | * It creates, in the same cluster as the calling thread, a new process descriptor, |
---|
| 133 | * and a new associated main thread descriptor, executing a new memory image defined |
---|
| 134 | * by the <filename> argument. This new process inherit from the old process the PID |
---|
| 135 | * and the PPID, as well as all open files registered in fd_array, including the TXT. |
---|
| 136 | * The old process descriptor, and all its threads are blocked, and marked for deletion. |
---|
| 137 | * Therefore the exec syscall does not return to the calling thread in case of success. |
---|
| 138 | * This function must be called by the main thread (thread 0 in owner cluster), of the |
---|
| 139 | * calling process, to destroy all process copies, and all other threads in all clusters. |
---|
| 140 | ****************************************************************************************** |
---|
| 141 | * Implementation note: |
---|
| 142 | * It fill the calling process "exec_info" structure containing all informations required |
---|
| 143 | * to initialize the new process descriptor and the associated main thread. This includes: |
---|
| 144 | * - pathname to the new process .elf> file in VFS. |
---|
| 145 | * - array of string pointers defining the process arguments, and the associated strings. |
---|
| 146 | * - array of string pointers defining environment variables, and the associated strings. |
---|
| 147 | * To do this, it calls the process_exec_get_strings function, that copies all relevant |
---|
| 148 | * information from user space to kernel space, using functions defined in <hal_uspace.h>. |
---|
| 149 | * Then it calls the process_make_exec() function that returns only in case of failure. |
---|
| 150 | * |
---|
| 151 | * TODO : the <envs> argument is not supported yet and must be NULL. |
---|
| 152 | ****************************************************************************************** |
---|
| 153 | * @ filename : string pointer on .elf filename (pointer in user space) |
---|
| 154 | * @ user_args : array of strings on process arguments (pointers in user space) |
---|
| 155 | * @ user_envs : array of strings on environment variables (pointers in user space) |
---|
| 156 | * @ does not return if success / returns -1 if failure. |
---|
| 157 | *****************************************************************************************/ |
---|
| 158 | int sys_exec( char * filename, |
---|
| 159 | char ** user_args, |
---|
| 160 | char ** user_envs ); |
---|
| 161 | |
---|
| 162 | /****************************************************************************************** |
---|
| 163 | * This function implements the "exit" system call terminating a POSIX process. |
---|
| 164 | * It can be called by any thread running in any cluster. |
---|
| 165 | * It uses both remote accesses to access the owner process descriptor, and the |
---|
| 166 | * RPC_PROCESS_SIGACTION to delete remote process copies and thread descriptors. |
---|
| 167 | * In the present implementation, this function implements actually the _exit(): |
---|
| 168 | * - it does not flush open output streams. |
---|
| 169 | * - it does not close open streams. |
---|
[407] | 170 | ****************************************************************************************** |
---|
[670] | 171 | * @ status : terminaison status returned to parent process. |
---|
[23] | 172 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 173 | *****************************************************************************************/ |
---|
[670] | 174 | int sys_exit( uint32_t status ); |
---|
[16] | 175 | |
---|
[407] | 176 | /****************************************************************************************** |
---|
[670] | 177 | * This generic function implements the non-standard FBF related syscalls. |
---|
| 178 | * The operation types mnemonics are defined in the <shared_fbf> file. |
---|
| 179 | * The supported operations are defined in the <almosmkh.h> & <almosmkh.c> files. |
---|
| 180 | * This function ckecks the syscall arguments, and call the relevant kernel function. |
---|
[407] | 181 | ****************************************************************************************** |
---|
[670] | 182 | * @ arg0 : operation type (mnemonics defined in shared_fbf.h) |
---|
| 183 | * @ arg1 : depends on operation type |
---|
| 184 | * @ arg2 : depends on operation type |
---|
| 185 | * @ arg3 : depends on operation type |
---|
| 186 | * @ return 0 if success / return -1 if illegal argument. |
---|
| 187 | *****************************************************************************************/ |
---|
| 188 | int sys_fbf( reg_t arg0, |
---|
| 189 | reg_t arg1, |
---|
| 190 | reg_t arg2, |
---|
| 191 | reg_t arg3 ); |
---|
| 192 | |
---|
| 193 | /****************************************************************************************** |
---|
| 194 | * This function gives the process identified by the <pid> argument |
---|
| 195 | * the exclusive ownership of its TXT_TX terminal (put it in foreground). |
---|
| 196 | ****************************************************************************************** |
---|
| 197 | * @ pid : process identifier. |
---|
[610] | 198 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 199 | *****************************************************************************************/ |
---|
[670] | 200 | int sys_fg( pid_t pid ); |
---|
[16] | 201 | |
---|
[407] | 202 | /****************************************************************************************** |
---|
[670] | 203 | * This function implements the "fsync" system call. |
---|
| 204 | * It forces all modified pages of the file mapper identified by the <fd> argument |
---|
| 205 | * to be copied to the IOC device. |
---|
| 206 | * It can be called by any thread running in any cluster. |
---|
| 207 | * TODO not implemented yet. |
---|
| 208 | ****************************************************************************************** |
---|
| 209 | * @ file_id : file descriptor index in fd_array. |
---|
[23] | 210 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 211 | *****************************************************************************************/ |
---|
[670] | 212 | int sys_fsync( uint32_t file_id ); |
---|
[16] | 213 | |
---|
[407] | 214 | /****************************************************************************************** |
---|
[670] | 215 | * This function implement the "fork" system call on the kernel side. |
---|
| 216 | * The calling process descriptor (parent process), and the associated thread descriptor |
---|
| 217 | * are replicated in a - likely - remote cluster, that becomes the child process owner. |
---|
| 218 | * The child process get a new PID, and is linked to the parent PID. The child process |
---|
| 219 | * inherit from its parent the memory image, and all open files (including the TXT). |
---|
| 220 | * The child process becomes the TXT terminal owner. |
---|
| 221 | * The target cluster depends on the "fork_user" flag and "fork_cxy" variable that can be |
---|
| 222 | * stored in the calling thread descriptor by the specific fork_place() system call. |
---|
| 223 | * If not, the kernel function makes a query to the DQDT to select the target cluster. |
---|
| 224 | ****************************************************************************************** |
---|
| 225 | * @ if success, returns child process PID to parent, and return O to child. |
---|
| 226 | * @ if failure, returns -1 to parent / no child process is created. |
---|
| 227 | *****************************************************************************************/ |
---|
| 228 | int sys_fork( void ); |
---|
| 229 | |
---|
| 230 | /****************************************************************************************** |
---|
| 231 | * This function implements the non-standard "get_best_core" syscall. |
---|
| 232 | * It selects, in a macro-cluster specified by the <base_cxy> and <level> arguments, |
---|
| 233 | * the core that has the lowest load. |
---|
| 234 | * When an active core has been found in the target macro-cluster, it writes into the |
---|
| 235 | * <cxy> and <lid> buffers the cluster identifier and the core local index, and return 0. |
---|
| 236 | * It returns -1 in case of illegal arguments (level / cxy / lid). |
---|
| 237 | * It returns +1 if there is no active core in specified macro-cluster. |
---|
[407] | 238 | ****************************************************************************************** |
---|
[670] | 239 | * @ base_cxy : [in] any cluster identifier in macro-cluster. |
---|
| 240 | * @ level : [in] macro-cluster level in [1,2,3,4,5]. |
---|
| 241 | * @ cxy : [out] selected core cluster identifier. |
---|
| 242 | * @ lid : [out] selected core local index in cluster. |
---|
| 243 | * @ return 0 if success / -1 if illegal arguments / +1 if no core in macro-clusters. |
---|
[407] | 244 | *****************************************************************************************/ |
---|
[670] | 245 | int sys_get_best_core( uint32_t base_cxy, |
---|
| 246 | uint32_t level, |
---|
| 247 | uint32_t * cxy, |
---|
| 248 | uint32_t * lid ); |
---|
[16] | 249 | |
---|
[407] | 250 | /****************************************************************************************** |
---|
[670] | 251 | * This function implement the non-standard get_config() syscall. |
---|
| 252 | * It returns the global hardware platform parameters in the <config> shared structure, |
---|
| 253 | * that is defined in the shared_almos.h file. |
---|
[407] | 254 | ****************************************************************************************** |
---|
[670] | 255 | * @ config : [out] pointer on the hard_config_t structure in user space. |
---|
| 256 | * @ return 0 if success / return -1 if illegal argument |
---|
[407] | 257 | *****************************************************************************************/ |
---|
[670] | 258 | int sys_get_config( struct hard_config_s * config ); |
---|
[23] | 259 | |
---|
[407] | 260 | /****************************************************************************************** |
---|
[670] | 261 | * This function implements the non-standard get_core_id() syscall. |
---|
| 262 | * It returns in <cxy> and <lid> the calling core cluster and local index. |
---|
[407] | 263 | ****************************************************************************************** |
---|
[670] | 264 | * @ cxy : [out] cluster identifier (fixed format) |
---|
| 265 | * @ lid : [out] core local index in cluster. |
---|
| 266 | * @ return 0 if success / return -1 if illegal arguments |
---|
[407] | 267 | *****************************************************************************************/ |
---|
[670] | 268 | int sys_get_core_id( uint32_t * cxy, |
---|
| 269 | uint32_t * lid ); |
---|
[16] | 270 | |
---|
[407] | 271 | /****************************************************************************************** |
---|
[670] | 272 | * This function implements the non-standard get_cycle() syscall. |
---|
| 273 | * It returns in a 64 bits user buffer the calling core cycles count. |
---|
| 274 | * It uses both the hardware register and the core descriptor cycles count to take |
---|
| 275 | * into account a possible harware register overflow in 32 bits architectures. |
---|
[407] | 276 | ****************************************************************************************** |
---|
[670] | 277 | * cycle : [out] address of buffer in user space. |
---|
| 278 | * @ return 0 if success / return -1 if illegal arguments |
---|
[407] | 279 | *****************************************************************************************/ |
---|
[670] | 280 | int sys_get_cycle( uint64_t * cycle ); |
---|
[16] | 281 | |
---|
[407] | 282 | /****************************************************************************************** |
---|
[670] | 283 | * This function returns the pathname of the current working directory. |
---|
[407] | 284 | ****************************************************************************************** |
---|
[670] | 285 | * buf : buffer addres in user space. |
---|
| 286 | * nbytes : user buffer size in bytes. |
---|
| 287 | * @ return 0 if success / returns -1 if failure. |
---|
[407] | 288 | *****************************************************************************************/ |
---|
[670] | 289 | int sys_getcwd( char * buf, |
---|
| 290 | uint32_t nbytes ); |
---|
[16] | 291 | |
---|
[407] | 292 | /****************************************************************************************** |
---|
[670] | 293 | * This function implements the non-standard "get_nb_cores" syscall. |
---|
| 294 | * It writes in the <ncores> buffer the number of cores in the target cluster <cxy>. |
---|
[407] | 295 | ****************************************************************************************** |
---|
[670] | 296 | * @ cxy : [in] target cluster identifier. |
---|
| 297 | * @ ncores : [out] number of cores / 0 if cluster cxy undefined in architecture. |
---|
| 298 | * @ return 0 if success / return -1 if illegal "ncores" arguments. |
---|
[407] | 299 | *****************************************************************************************/ |
---|
[670] | 300 | int sys_get_nb_cores( uint32_t cxy, |
---|
| 301 | uint32_t * ncores ); |
---|
[16] | 302 | |
---|
[407] | 303 | /****************************************************************************************** |
---|
[670] | 304 | * This function implements the "getpid" system call on the kernel side. |
---|
| 305 | ****************************************************************************************** |
---|
| 306 | * @ returns the process PID for the calling thread. |
---|
| 307 | *****************************************************************************************/ |
---|
| 308 | int sys_getpid( void ); |
---|
| 309 | |
---|
| 310 | /****************************************************************************************** |
---|
| 311 | * This function implements the non-standard "get_thread_info" syscall. |
---|
| 312 | * It copies in the user structure defined by the <info> argument the values registered |
---|
| 313 | * in the calling thread "thread_info_t" kernel structure. |
---|
[407] | 314 | ****************************************************************************************** |
---|
[670] | 315 | * @ info : [out] pointer on thread_info_t structure in user space. |
---|
| 316 | * @ return 0 if success / return -1 if illegal argument. |
---|
[407] | 317 | *****************************************************************************************/ |
---|
[670] | 318 | int sys_get_thread_info( thread_info_t * info ); |
---|
[16] | 319 | |
---|
[407] | 320 | /****************************************************************************************** |
---|
[670] | 321 | * This function tests whether a given file descriptor dentified by the <file_id> |
---|
| 322 | * argument is an open file descriptor referring to a terminal. |
---|
[407] | 323 | ****************************************************************************************** |
---|
[670] | 324 | * @ file_id : file descriptor index |
---|
| 325 | * @ return 1 if it is a TXT device / return 0 if it is not a TXT device. |
---|
| 326 | *****************************************************************************************/ |
---|
| 327 | int sys_isatty( uint32_t file_id ); |
---|
| 328 | |
---|
| 329 | /****************************************************************************************** |
---|
| 330 | * This function returns a non-zero value in the <is_fg> buffer when the process |
---|
| 331 | * identified by the <pid> argument is the current TXT owner. |
---|
| 332 | ****************************************************************************************** |
---|
| 333 | * @ pid : process identifier. |
---|
| 334 | * @ is_fg : pointer on buffer. |
---|
[23] | 335 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 336 | *****************************************************************************************/ |
---|
[670] | 337 | int sys_is_fg( pid_t pid, |
---|
| 338 | uint32_t * is_fg ); |
---|
[16] | 339 | |
---|
[407] | 340 | /****************************************************************************************** |
---|
[670] | 341 | * This function implements the "kill" system call on the kernel side. |
---|
| 342 | * It register the signal defined by the <sig_id> argument in all thread descriptors |
---|
| 343 | * of a target process identified by the <pid> argument. This is done in all clusters |
---|
| 344 | * containing threads for the target process. |
---|
| 345 | * It can be executed by any thread running in any cluster, as this function uses |
---|
| 346 | * remote access to traverse the list of process copies stored in the owner cluster, |
---|
| 347 | * and the RPC_SIGNAL_RISE to signal the remote threads. |
---|
| 348 | * This function does nothing for (sig_id == 0). This can be used to check process pid. |
---|
| 349 | * TODO : This first implementation supports only SIGKILL / SIGSTOP / SIGCONT values. |
---|
| 350 | ****************************************************************************************** |
---|
| 351 | * @ pid : target process identifier. |
---|
| 352 | * @ sig_id : index defining the signal type. |
---|
[23] | 353 | * @ return 0 if success / returns -1 if failure. |
---|
[407] | 354 | *****************************************************************************************/ |
---|
[670] | 355 | int sys_kill( pid_t pid, |
---|
| 356 | uint32_t sig_id ); |
---|
[16] | 357 | |
---|
[407] | 358 | /****************************************************************************************** |
---|
[670] | 359 | * This function repositions the offset of the file descriptor identified by the |
---|
| 360 | * <file_id> argument, according to the operation type defined by the <whence> argument. |
---|
| 361 | ****************************************************************************************** |
---|
| 362 | * @ file_id : open file index in fd_array. |
---|
| 363 | * @ offset : used to compute new offset value. |
---|
| 364 | * @ whence : operation type (see below). |
---|
| 365 | * @ returns new offset value if success / returns -1 if failure. |
---|
| 366 | *****************************************************************************************/ |
---|
| 367 | int sys_lseek( xptr_t file_id, |
---|
| 368 | uint32_t offset, |
---|
| 369 | uint32_t whence ); |
---|
| 370 | |
---|
| 371 | /****************************************************************************************** |
---|
| 372 | * This function implements the "mkdir" system call, creating a new directory in |
---|
[610] | 373 | * the file system, as defined by the <pathname> argument, with the access permission |
---|
| 374 | * defined by the <rights> argument. All nodes but the last in the pathname must exist. |
---|
| 375 | * It can be called by any thread running in any cluster. |
---|
[407] | 376 | ****************************************************************************************** |
---|
[610] | 377 | * @ pathname : pathname defining the new directory location in file system. |
---|
| 378 | * @ rights : access rights (non used yet). |
---|
| 379 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 380 | *****************************************************************************************/ |
---|
[610] | 381 | int sys_mkdir( char * pathname, |
---|
| 382 | uint32_t rights ); |
---|
[16] | 383 | |
---|
[407] | 384 | /****************************************************************************************** |
---|
[670] | 385 | * This function creates a new inode/dentry couple of type FIFO, and registers it in |
---|
| 386 | * the Inode-Tree, as specified by the <pathname> and <mode> arguments. |
---|
| 387 | * The associated file descriptors are created later, using the sys_open() function. |
---|
[407] | 388 | ****************************************************************************************** |
---|
[23] | 389 | * @ pathname : pathname (can be relative or absolute). |
---|
| 390 | * @ mode : access rights (as defined in chmod). |
---|
| 391 | * @ return 0 if success / returns -1 if failure. |
---|
[407] | 392 | *****************************************************************************************/ |
---|
[23] | 393 | int sys_mkfifo( char * pathname, |
---|
| 394 | uint32_t mode ); |
---|
[16] | 395 | |
---|
[407] | 396 | /****************************************************************************************** |
---|
[670] | 397 | * This function map physical memory (or a file) in the calling thread virtual space. |
---|
| 398 | * The <attr> argument is a pointer on a structure for arguments (see shared_mman.h). |
---|
| 399 | * The user defined virtual address (MAP_FIXED flag) is not supported. |
---|
| 400 | * TODO : the access rights checking is not implemented yet [AG] |
---|
| 401 | * TODO : the Copy on Write for MAP_PRIVATE is not implemented yet [AG] |
---|
| 402 | ****************************************************************************************** |
---|
| 403 | * @ attr : pointer on attributes structure. |
---|
| 404 | * @ returns 0 if success / returns -1 if failure. |
---|
| 405 | *****************************************************************************************/ |
---|
| 406 | int sys_mmap( mmap_attr_t * attr ); |
---|
| 407 | |
---|
| 408 | /****************************************************************************************** |
---|
| 409 | * This function remove an existing mapping defined by the <addr> and <size> |
---|
| 410 | * arguments in user space. This can modify the number of vsegs: |
---|
| 411 | * (a) if the region is not entirely mapped in one existing vseg, it's an error. |
---|
| 412 | * (b) if the region has same base and size as an existing vseg, the vseg is removed. |
---|
| 413 | * (c) if the removed region cut the exiting vseg in two parts, it is resized. |
---|
| 414 | * (d) if the removed region cut the vseg in three parts, it is modified, and a new |
---|
| 415 | * vseg is created with same type. |
---|
| 416 | * All existing VSL copies are updated. |
---|
| 417 | ****************************************************************************************** |
---|
| 418 | * @ addr : base address in user space. |
---|
| 419 | * @ size : number of bytes. |
---|
| 420 | * @ return 0 if success / return -1 if failure. |
---|
| 421 | *****************************************************************************************/ |
---|
| 422 | int sys_munmap( void * addr, |
---|
| 423 | uint32_t size ); |
---|
| 424 | |
---|
| 425 | /****************************************************************************************** |
---|
| 426 | * This function implement all operations on a POSIX mutex. |
---|
| 427 | * The kernel structure representing a barrier is defined in the remote_barrier.h file. |
---|
| 428 | * The code implementting the operations is defined in the remote_barrier.c file. |
---|
| 429 | ****************************************************************************************** |
---|
| 430 | * @ vaddr : mutex virtual address in user space == identifier. |
---|
| 431 | * @ operation : MUTEX_INIT / MUTEX_DESTROY / MUTEX_LOCK / MUTEX_UNLOCK |
---|
| 432 | * @ attr : mutex attributes (non supported yet => must be 0). |
---|
| 433 | * @ return 0 if success / return -1 if failure. |
---|
| 434 | *****************************************************************************************/ |
---|
| 435 | int sys_mutex( void * vaddr, |
---|
| 436 | uint32_t operation, |
---|
| 437 | uint32_t count ); |
---|
| 438 | |
---|
| 439 | /****************************************************************************************** |
---|
| 440 | * This function creates a new file descriptor for an existing inode. |
---|
| 441 | * It creates a new inode if required by the flags. |
---|
| 442 | ****************************************************************************************** |
---|
| 443 | * @ pathname : pathname in the inode tree (can be relative or absolute). |
---|
| 444 | * @ flags : bit vector attributes (see in shared_fcntl.h file) |
---|
| 445 | * @ mode : access rights. |
---|
| 446 | * @ return file descriptor index in fd_array if success / return -1 if failure. |
---|
| 447 | *****************************************************************************************/ |
---|
| 448 | int sys_open( char * pathname, |
---|
| 449 | uint32_t flags, |
---|
| 450 | uint32_t mode ); |
---|
| 451 | |
---|
| 452 | /****************************************************************************************** |
---|
| 453 | * This function creates an user level directory descriptor (including the associated |
---|
[623] | 454 | * array of user level dirents), and intialise it from the kernel directory mapper, that |
---|
| 455 | * contains all entries in this directory). The directory is identified by the <pathname> |
---|
| 456 | * argument. If the corresponding inode is missing in the Inode Tree, the inode is created, |
---|
| 457 | * but the directory must exist in the file system. |
---|
| 458 | * It returns a DIR pointer <dirp> on the dirent array in user space. |
---|
[664] | 459 | * The calling process fd_array is NOT modified. |
---|
[407] | 460 | ****************************************************************************************** |
---|
[611] | 461 | * @ pathname : [in] pathname (can be relative or absolute). |
---|
[407] | 462 | * @ dirp : [out] buffer for pointer on user directory (DIR). |
---|
[23] | 463 | * @ return 0 if success / returns -1 if failure. |
---|
[407] | 464 | *****************************************************************************************/ |
---|
| 465 | int sys_opendir( char * pathname, |
---|
| 466 | DIR ** dirp ); |
---|
[16] | 467 | |
---|
[407] | 468 | /****************************************************************************************** |
---|
[670] | 469 | * This function creates in the calling thread cluster an unnamed pipe, implemented |
---|
| 470 | * as a remote_buffer_t, creates two (read and write) file descriptors, and links these |
---|
| 471 | * two file descriptors to the pipe. |
---|
| 472 | * TODO : the dynamic memory allocation in case of buffer full is not implemented. |
---|
[407] | 473 | ****************************************************************************************** |
---|
[670] | 474 | * @ fd : pointeur on a 2 slots array of fdid : fd[0] read / fd[1] write. |
---|
| 475 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 476 | *****************************************************************************************/ |
---|
[670] | 477 | int sys_pipe( fdid_t * fd ); |
---|
[407] | 478 | |
---|
| 479 | /****************************************************************************************** |
---|
[670] | 480 | * This function implements the non-standard place_fork() syscall. |
---|
| 481 | * It can be used to specify the target cluster <cxy> for a new process created |
---|
| 482 | * by a subsequent fork() syscall. |
---|
| 483 | * WARNING: it must be called before each fork() syscall, as the placement specification |
---|
| 484 | * is reset by the fork syscall. |
---|
[407] | 485 | ****************************************************************************************** |
---|
[670] | 486 | * @ cxy : cluster identifier. |
---|
| 487 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 488 | *****************************************************************************************/ |
---|
[670] | 489 | int sys_place_fork( uint32_t cxy ); |
---|
[16] | 490 | |
---|
[407] | 491 | /****************************************************************************************** |
---|
[670] | 492 | * This function read bytes from an open file identified by its file descriptor. |
---|
| 493 | * The file can be a regular file or character oriented device. |
---|
| 494 | * IRQs are enabled during this system call. |
---|
[407] | 495 | ****************************************************************************************** |
---|
[670] | 496 | * @ file_id : open file index in fd_array. |
---|
| 497 | * @ buf : buffer virtual address in user space. |
---|
| 498 | * @ count : number of bytes. |
---|
| 499 | * @ returns number of bytes actually read if success / returns -1 if failure. |
---|
[407] | 500 | *****************************************************************************************/ |
---|
[670] | 501 | int sys_read( uint32_t file_id, |
---|
| 502 | void * buf, |
---|
| 503 | uint32_t count ); |
---|
[16] | 504 | |
---|
[407] | 505 | /****************************************************************************************** |
---|
[670] | 506 | * This function returns an user pointer on the dirent structure describing the |
---|
| 507 | * next directory entry in the directory identified by the <dirp> argument. |
---|
[437] | 508 | ****************************************************************************************** |
---|
[670] | 509 | * @ dirp : [in] user pointer on dirent array identifying the open directory. |
---|
| 510 | * @ buffer : [out] pointer on user buffer for a pointer on dirent in user space. |
---|
| 511 | * @ return O if success / returns -1 if failure. |
---|
[407] | 512 | *****************************************************************************************/ |
---|
[670] | 513 | int sys_readdir( DIR * dirp, |
---|
| 514 | struct dirent ** buffer ); |
---|
[16] | 515 | |
---|
[407] | 516 | /****************************************************************************************** |
---|
[670] | 517 | * This function causes the file named <old> to be renamed as <new>. |
---|
| 518 | * If new exists, it is first removed. Both old and new must be of the same type (both |
---|
| 519 | * must be either directories or non-directories) and must reside on the same file system. |
---|
| 520 | * It guarantees that an instance of <new> will always exist, even if the system should |
---|
| 521 | * crash in the middle of the operation. |
---|
[407] | 522 | ****************************************************************************************** |
---|
[670] | 523 | * @ old : old file name. |
---|
| 524 | * @ new : new file name. |
---|
| 525 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 526 | *****************************************************************************************/ |
---|
[670] | 527 | int sys_rename( char *old, |
---|
| 528 | char *new ); |
---|
[16] | 529 | |
---|
[407] | 530 | /****************************************************************************************** |
---|
[670] | 531 | * This function removes a directory file whose name is given by <pathname>. |
---|
[407] | 532 | * The directory must not have any entries other than `.' and `..'. |
---|
| 533 | ****************************************************************************************** |
---|
[23] | 534 | * @ pathname : pathname (can be relative or absolute). |
---|
| 535 | * @ return 0 if success / returns -1 if failure. |
---|
[407] | 536 | *****************************************************************************************/ |
---|
[566] | 537 | int sys_rmdir( char * pathname ); |
---|
[16] | 538 | |
---|
[407] | 539 | /****************************************************************************************** |
---|
[670] | 540 | * This function implement all operations on a POSIX unnamed semaphore, |
---|
| 541 | * that can be shared by threads running in different clusters. |
---|
| 542 | * The kernel structure representing a remote semaphore is in the remote_sem.h file, |
---|
| 543 | * and the code implementing the operations is in the remore_sem.c file. |
---|
[407] | 544 | ****************************************************************************************** |
---|
[670] | 545 | * @ vaddr : semaphore virtual address in user space == identifier. |
---|
| 546 | * @ operation : SEM_INIT / SEM_DESTROY / SEM_GETVALUE / SEM_POST / SEM_WAIT. |
---|
| 547 | * @ init_value : initial semaphore value. |
---|
| 548 | * @ current_value : pointer on buffer for current semaphore value. |
---|
| 549 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 550 | *****************************************************************************************/ |
---|
[670] | 551 | int sys_sem( void * vaddr, |
---|
| 552 | uint32_t operation, |
---|
| 553 | uint32_t init_value, |
---|
| 554 | uint32_t * current_value ); |
---|
[16] | 555 | |
---|
[407] | 556 | /****************************************************************************************** |
---|
[670] | 557 | * This function associate a specific signal handler to a given signal type. |
---|
[584] | 558 | * The handlers for the SIGKILL and SIGSTOP signals cannot be redefined. |
---|
[407] | 559 | ****************************************************************************************** |
---|
[23] | 560 | * @ sig_id : index defining signal type (from 1 to 31). |
---|
| 561 | * @ handler : pointer on fonction implementing the specific handler. |
---|
| 562 | * @ return 0 if success / returns -1 if failure. |
---|
[407] | 563 | *****************************************************************************************/ |
---|
[23] | 564 | int sys_signal( uint32_t sig_id, |
---|
| 565 | void * handler ); |
---|
[16] | 566 | |
---|
[407] | 567 | /****************************************************************************************** |
---|
[670] | 568 | * This generic function implements the socket related syscalls. |
---|
| 569 | * The operation types mnemonics are defined in the <shared_socket> file. |
---|
| 570 | * The supported operations are defined in the <socket.h> & <socket.c> files. |
---|
| 571 | * This function ckecks the syscall arguments, and call the relevant kernel function. |
---|
[407] | 572 | ****************************************************************************************** |
---|
[670] | 573 | * @ arg0 : operation type (mnemonics defined in shared_socket.h) |
---|
| 574 | * @ arg1 : depends on operation type |
---|
| 575 | * @ arg2 : depends on operation type |
---|
| 576 | * @ arg3 : depends on operation type |
---|
| 577 | * @ return 0 if success / return -1 if illegal argument. |
---|
[407] | 578 | *****************************************************************************************/ |
---|
[670] | 579 | int sys_socket( reg_t arg0, |
---|
| 580 | reg_t arg1, |
---|
| 581 | reg_t arg2, |
---|
| 582 | reg_t arg3 ); |
---|
[16] | 583 | |
---|
[407] | 584 | /****************************************************************************************** |
---|
[670] | 585 | * This function returns in the <stat> structure, defined in the "shared_syscalls.h" |
---|
[407] | 586 | * file, various informations on the file/directory identified by the <pathname> argument. |
---|
[594] | 587 | * TODO only the <st_ino>, <st_mode>,<st_uid>,<st_gid>,<st_size> are set. |
---|
[407] | 588 | ****************************************************************************************** |
---|
| 589 | * @ pathname : user pointer on file pathname. |
---|
| 590 | * @ stat : user pointer on the stat structure. |
---|
[23] | 591 | * @ returns O if success / returns -1 if failure. |
---|
[407] | 592 | *****************************************************************************************/ |
---|
[566] | 593 | int sys_stat( char * pathname, |
---|
[407] | 594 | struct stat * stat ); |
---|
[1] | 595 | |
---|
[407] | 596 | /****************************************************************************************** |
---|
[670] | 597 | * This function implements the "sync" system call. |
---|
| 598 | * It forces all modified pages in all kernel mappers to be copied to the IOC device. |
---|
| 599 | * It can be called by any thread running in any cluster. |
---|
| 600 | * TODO not implemented yet. |
---|
[421] | 601 | ****************************************************************************************** |
---|
[670] | 602 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 603 | *****************************************************************************************/ |
---|
[670] | 604 | int sys_sync( void ); |
---|
[1] | 605 | |
---|
[407] | 606 | /****************************************************************************************** |
---|
[670] | 607 | * This function returns in the structure <tv>, defined in the time.h file, |
---|
| 608 | * the current time (in seconds & micro-seconds). |
---|
| 609 | * It is computed from the calling core descriptor. |
---|
| 610 | * The timezone is not supported. |
---|
[407] | 611 | ****************************************************************************************** |
---|
[670] | 612 | * @ tv : pointer on the timeval structure. |
---|
| 613 | * @ tz : pointer on the timezone structure : must be NULL. |
---|
| 614 | * @ return 0 if success / returns -1 if failure. |
---|
[407] | 615 | *****************************************************************************************/ |
---|
[670] | 616 | int sys_timeofday( struct timeval * tv, |
---|
| 617 | struct timezone * tz ); |
---|
[1] | 618 | |
---|
[407] | 619 | /****************************************************************************************** |
---|
[670] | 620 | * This function requests a target thread identified by its <trdid> argument |
---|
| 621 | * to be cancelled. It calls the thread_kill() function to block the target thread |
---|
| 622 | * on the THREAD_BLOCKED_GLOBAL condition, and to set the THREAD_FLAG_REQ_DELETE. |
---|
| 623 | * The thread will be detached from its process, and the memory allocated to the thread |
---|
| 624 | * descriptor will be released by the scheduler at the next scheduling point. |
---|
[407] | 625 | ****************************************************************************************** |
---|
[670] | 626 | * @ trdid : thread identifier. |
---|
| 627 | * @ return 0 if success / return -1 if illegal argument. |
---|
[407] | 628 | *****************************************************************************************/ |
---|
[670] | 629 | int sys_thread_cancel( trdid_t trdid ); |
---|
[1] | 630 | |
---|
[407] | 631 | /****************************************************************************************** |
---|
[670] | 632 | * This function creates a new user thread. The <user_attr> argument is a pointer |
---|
| 633 | * on astructure containing the thread attributes, defined in thread.h file. |
---|
[407] | 634 | ****************************************************************************************** |
---|
[670] | 635 | * @ trdid_ptr : [out] pointer on buffer for created thread trdid. |
---|
| 636 | * @ user_attr : [in] pointer on thread attributes structure. |
---|
| 637 | * @ start_func : [in] pointer on start function. |
---|
| 638 | * @ start_args : [in] pointer on start function arguments. |
---|
| 639 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 640 | *****************************************************************************************/ |
---|
[670] | 641 | int sys_thread_create( trdid_t * trdid_ptr, |
---|
| 642 | struct pthread_attr_s * user_attr, |
---|
| 643 | void * start_func, |
---|
| 644 | void * start_args ); |
---|
[407] | 645 | |
---|
| 646 | /****************************************************************************************** |
---|
[670] | 647 | * This function detach a joinable thread. |
---|
[407] | 648 | ****************************************************************************************** |
---|
[670] | 649 | * @ trdid : thread identifier. |
---|
| 650 | * @ return 0 if success / return -1 if failure. |
---|
[407] | 651 | *****************************************************************************************/ |
---|
[670] | 652 | int sys_thread_detach( trdid_t trdid ); |
---|
[407] | 653 | |
---|
| 654 | /****************************************************************************************** |
---|
[670] | 655 | * This function terminates the execution of the calling user thread, and makes |
---|
| 656 | * the <exit_status> pointer available to any successful pthread_join() with the |
---|
| 657 | * terminating thread. |
---|
| 658 | * - If the calling thread is the main thread, it calls the sys_exit() function to delete |
---|
| 659 | * completely the user process. |
---|
| 660 | * - if the calling thread is not the main thread, it registers the <exit_status> pointer |
---|
| 661 | * in the thread descriptor, and calls the thread_delete() function, that will set the |
---|
| 662 | * THREAD_SIG_EXIT signal, set the THREAD_BLOCKED_GLOBAL bit in thread descriptor, and |
---|
| 663 | * deschedules. All memory allocated to the thread is released later by the scheduler. |
---|
| 664 | * If the thread is in "detached" mode, the thread_delete() function implements |
---|
| 665 | * the synchonisation with the joining thread. |
---|
[457] | 666 | ****************************************************************************************** |
---|
[670] | 667 | * @ exit_status : [out] pointer to be returned to joining thread if thread is attached. |
---|
| 668 | * @ return 0 if success / return -1 if all locks not released or illegal argument. |
---|
| 669 | *****************************************************************************************/ |
---|
| 670 | int sys_thread_exit( void * exit_status ); |
---|
| 671 | |
---|
| 672 | /****************************************************************************************** |
---|
| 673 | * This blocking function suspend execution of the calling thread until completion |
---|
| 674 | * of another target thread identified by the <trdid> argument. |
---|
| 675 | * The target thread must be joinable (running in ATTACHED mode), and must be different |
---|
| 676 | * from the calling thread. |
---|
| 677 | * If the <exit_value> argument is not NULL, the value passed to pthread_exit() by the |
---|
| 678 | * target thread is stored in the location referenced by exit_value. |
---|
| 679 | ****************************************************************************************** |
---|
| 680 | * @ trdid : [in] target thread identifier. |
---|
| 681 | * @ thread : [out] buffer for exit_value returned by target thread. |
---|
[457] | 682 | * @ return 0 if success / return -1 if failure. |
---|
| 683 | *****************************************************************************************/ |
---|
[670] | 684 | int sys_thread_join( trdid_t trdid, |
---|
| 685 | void ** exit_value ); |
---|
[457] | 686 | |
---|
| 687 | /****************************************************************************************** |
---|
[670] | 688 | * This function block the calling thread on the THREAD_BLOCKED_GLOBAL condition, |
---|
[407] | 689 | * and deschedule. |
---|
| 690 | ****************************************************************************************** |
---|
| 691 | * @ return 0 if success / returns -1 if failure. |
---|
| 692 | *****************************************************************************************/ |
---|
[479] | 693 | int sys_thread_sleep( void ); |
---|
[407] | 694 | |
---|
| 695 | /****************************************************************************************** |
---|
[670] | 696 | * This function unblock the thread identified by its <trdid> from the |
---|
[407] | 697 | * THREAD_BLOCKED_GLOBAL condition. |
---|
| 698 | ****************************************************************************************** |
---|
| 699 | * @ trdid : target thread identifier. |
---|
| 700 | * @ return 0 if success / return -1 if failure. |
---|
| 701 | *****************************************************************************************/ |
---|
[506] | 702 | int sys_thread_wakeup( trdid_t trdid ); |
---|
[407] | 703 | |
---|
[421] | 704 | /****************************************************************************************** |
---|
[670] | 705 | * This function calls the scheduler for the core running the calling thread. |
---|
| 706 | ****************************************************************************************** |
---|
| 707 | * @ x_size : [out] number of clusters in a row. |
---|
| 708 | * @ y_size : [out] number of clusters in a column. |
---|
| 709 | * @ ncores : [out] number of cores per cluster. |
---|
| 710 | * @ return always 0. |
---|
| 711 | *****************************************************************************************/ |
---|
| 712 | int sys_thread_yield( void ); |
---|
| 713 | |
---|
| 714 | /****************************************************************************************** |
---|
| 715 | * This debug function is used to activate / desactivate the context switches trace |
---|
[443] | 716 | * for a core identified by the <cxy> and <lid> arguments. |
---|
[421] | 717 | * It can be called by any other thread in the same process. |
---|
| 718 | ****************************************************************************************** |
---|
[443] | 719 | * @ active : activate trace if true / desactivate trace if false. |
---|
| 720 | * @ cxy : cluster identifier. |
---|
| 721 | * @ lid : core local index. |
---|
[421] | 722 | * @ returns O if success / returns -1 if failure. |
---|
| 723 | *****************************************************************************************/ |
---|
[443] | 724 | int sys_trace( bool_t active, |
---|
| 725 | cxy_t cxy, |
---|
| 726 | lid_t lid ); |
---|
[407] | 727 | |
---|
[421] | 728 | /****************************************************************************************** |
---|
[670] | 729 | * This function implement the operations related to User Thread Local Storage. |
---|
| 730 | * It is actually implemented as an uint32_t variable in the thread descriptor. |
---|
[421] | 731 | ****************************************************************************************** |
---|
[670] | 732 | * @ operation : UTLS operation type as defined below. |
---|
| 733 | * @ value : argument value for the UTLS_SET operation. |
---|
| 734 | * @ return value for the UTLS_GET and UTLS_GET_ERRNO / return -1 if failure. |
---|
[421] | 735 | *****************************************************************************************/ |
---|
[670] | 736 | int sys_utls( uint32_t operation, |
---|
| 737 | uint32_t value ); |
---|
[421] | 738 | |
---|
[445] | 739 | /****************************************************************************************** |
---|
[670] | 740 | * This function removes a directory entry identified by the <pathname> from the |
---|
| 741 | * directory, and decrement the link count of the file referenced by the link. |
---|
| 742 | * If the link count reduces to zero, and no process has the file open, then all resources |
---|
| 743 | * associated with the file are reclaimed. If one or more process have the file open when |
---|
| 744 | * the last link is removed, the link is removed, but the removal of the file is delayed |
---|
| 745 | * until all references to it have been closed. |
---|
[445] | 746 | ****************************************************************************************** |
---|
[670] | 747 | * @ pathname : pathname (can be relative or absolute). |
---|
| 748 | * @ returns 0 if success / returns -1 if failure. |
---|
[445] | 749 | *****************************************************************************************/ |
---|
[670] | 750 | int sys_unlink( char * pathname ); |
---|
[421] | 751 | |
---|
[610] | 752 | /****************************************************************************************** |
---|
[670] | 753 | * This blocking function waits a change of a child process state, that can be: |
---|
| 754 | * - a termination of child following a process_make_exit(). |
---|
| 755 | * - a termination of child following a process_make_kill(). |
---|
| 756 | * - a blocking of child following a SIGSTOP signal. |
---|
| 757 | * In case of a multi-thread process, this function must be called by the main thread |
---|
| 758 | * runningin the reference cluster. |
---|
| 759 | * When a change has been observed, it returns the PID of the child process, and stores |
---|
| 760 | * in the <status> argument relevant information on the child state change. |
---|
| 761 | * The following macros can be used to extract information from status: |
---|
| 762 | * - WIFEXITED(status) : is true if the child process terminated with an exit(). |
---|
| 763 | * - WIFSIGNALED(status) : is true if the child process killed by a signal. |
---|
| 764 | * - WIFSTOPPED(status) : is true if the child process is stopped by a signal. |
---|
| 765 | * - WEXITSTATUS(status) : returns the low-order 8 bits of the exit() argument. |
---|
| 766 | * If a parent process terminates without waiting for all child processes to terminate, |
---|
| 767 | * the remaining child processes are attached to the init process. |
---|
| 768 | * WARNING: negative values for the <pid> argument are not supported. |
---|
[610] | 769 | ****************************************************************************************** |
---|
[670] | 770 | * @ searched_pid : searched child process identifier. |
---|
| 771 | * @ status : [out] child termination status. |
---|
| 772 | * @ return child PID if success / return -1 if searched PID not found. |
---|
[610] | 773 | *****************************************************************************************/ |
---|
[670] | 774 | int sys_wait( uint32_t * status ); |
---|
[610] | 775 | |
---|
[626] | 776 | /****************************************************************************************** |
---|
[670] | 777 | * This function writes bytes to an open file identified by its file descriptor. |
---|
| 778 | * The file can be a regular file or character oriented device. For a regular file, |
---|
| 779 | * the target inode "size" field is updated if (offset + count) is larger than the |
---|
| 780 | * current "size" value. The size value registered in the mappers of the parent(s) |
---|
| 781 | * directory are not modified and will be asynchronously updated when the file is closed. |
---|
| 782 | * IRQs are enabled during this system call. |
---|
[626] | 783 | ****************************************************************************************** |
---|
[670] | 784 | * @ file_id : open file index in fd_array. |
---|
| 785 | * @ buf : buffer virtual address in user space. |
---|
| 786 | * @ count : number of bytes. |
---|
| 787 | * @ returns number of bytes actually written if success / returns -1 if failure. |
---|
[626] | 788 | *****************************************************************************************/ |
---|
[670] | 789 | int sys_write( uint32_t file_id, |
---|
| 790 | void * buf, |
---|
| 791 | uint32_t count ); |
---|
[626] | 792 | |
---|
| 793 | |
---|
[16] | 794 | #endif // _SYSCALLS_H_ |
---|