spawn.h (ba3594ba9b5dd4c846c472a8d657edcb7c8109ac) | spawn.h (10a6478a64c986fe8b918521951c9068ed5588fe) |
---|---|
1/* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE --- 60 unchanged lines hidden (view full) --- 69 void *__file_attrp; /* implementation-private */ 70} posix_spawn_file_actions_t; 71 72extern int posix_spawn( 73 pid_t *_RESTRICT_KYWD pid, 74 const char *_RESTRICT_KYWD path, 75 const posix_spawn_file_actions_t *file_actions, 76 const posix_spawnattr_t *_RESTRICT_KYWD attrp, | 1/* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE --- 60 unchanged lines hidden (view full) --- 69 void *__file_attrp; /* implementation-private */ 70} posix_spawn_file_actions_t; 71 72extern int posix_spawn( 73 pid_t *_RESTRICT_KYWD pid, 74 const char *_RESTRICT_KYWD path, 75 const posix_spawn_file_actions_t *file_actions, 76 const posix_spawnattr_t *_RESTRICT_KYWD attrp, |
77 char *const argv[_RESTRICT_KYWD], 78 char *const envp[_RESTRICT_KYWD]); | 77 char *const *_RESTRICT_KYWD argv, 78 char *const *_RESTRICT_KYWD envp); |
79 80extern int posix_spawnp( 81 pid_t *_RESTRICT_KYWD pid, 82 const char *_RESTRICT_KYWD file, 83 const posix_spawn_file_actions_t *file_actions, 84 const posix_spawnattr_t *_RESTRICT_KYWD attrp, | 79 80extern int posix_spawnp( 81 pid_t *_RESTRICT_KYWD pid, 82 const char *_RESTRICT_KYWD file, 83 const posix_spawn_file_actions_t *file_actions, 84 const posix_spawnattr_t *_RESTRICT_KYWD attrp, |
85 char *const argv[_RESTRICT_KYWD], 86 char *const envp[_RESTRICT_KYWD]); | 85 char *const *_RESTRICT_KYWD argv, 86 char *const *_RESTRICT_KYWD envp); |
87 88extern int posix_spawn_file_actions_init( 89 posix_spawn_file_actions_t *file_actions); 90 91extern int posix_spawn_file_actions_destroy( 92 posix_spawn_file_actions_t *file_actions); 93 94extern int posix_spawn_file_actions_addopen( --- 101 unchanged lines hidden --- | 87 88extern int posix_spawn_file_actions_init( 89 posix_spawn_file_actions_t *file_actions); 90 91extern int posix_spawn_file_actions_destroy( 92 posix_spawn_file_actions_t *file_actions); 93 94extern int posix_spawn_file_actions_addopen( --- 101 unchanged lines hidden --- |