/src/tests/kernel/arch/aarch64/ |
execregs.c | 134 /* x2: used to pass posix_spawn arg2, nonnull anyway (&fileacts) */ 166 posix_spawn_file_actions_t fileacts; local in function:spawnregschild 171 error = posix_spawn_file_actions_init(&fileacts); 174 error = posix_spawn_file_actions_adddup2(&fileacts, fd, STDOUT_FILENO); 215 error = posix_spawn(&pid, path, &fileacts, &attr, argv, envp); 220 posix_spawn_file_actions_destroy(&fileacts);
|
/src/tests/kernel/arch/i386/ |
execregs.c | 93 posix_spawn_file_actions_t fileacts; local in function:spawnregschild 98 error = posix_spawn_file_actions_init(&fileacts); 101 error = posix_spawn_file_actions_adddup2(&fileacts, fd, STDOUT_FILENO); 121 error = posix_spawn(&pid, path, &fileacts, &attr, argv, envp); 126 posix_spawn_file_actions_destroy(&fileacts);
|
/src/tests/kernel/arch/vax/ |
execregs.c | 120 posix_spawn_file_actions_t fileacts; local in function:spawnregschild 125 error = posix_spawn_file_actions_init(&fileacts); 128 error = posix_spawn_file_actions_adddup2(&fileacts, fd, STDOUT_FILENO); 155 error = posix_spawn(&pid, path, &fileacts, &attr, argv, envp); 160 posix_spawn_file_actions_destroy(&fileacts);
|
/src/tests/kernel/arch/x86_64/ |
execregs.c | 99 /* rdx: used to pass posix_spawn arg2, nonnull anyway (&fileacts) */ 115 posix_spawn_file_actions_t fileacts; local in function:spawnregschild 120 error = posix_spawn_file_actions_init(&fileacts); 123 error = posix_spawn_file_actions_adddup2(&fileacts, fd, STDOUT_FILENO); 145 error = posix_spawn(&pid, path, &fileacts, &attr, argv, envp); 150 posix_spawn_file_actions_destroy(&fileacts);
|
/src/tests/kernel/arch/hppa/ |
execregs.c | 321 posix_spawn_file_actions_t fileacts; local in function:spawnregschild 326 error = posix_spawn_file_actions_init(&fileacts); 329 error = posix_spawn_file_actions_adddup2(&fileacts, fd, STDOUT_FILENO); 376 error = posix_spawn(&pid, path, &fileacts, &attr, argv, envp); 381 posix_spawn_file_actions_destroy(&fileacts);
|