posix_spawnattr_destroy()
Destroy a spawn attributes object
Synopsis:
#include <spawn.h>
int posix_spawnattr_destroy(posix_spawnattr_t *attrp);
Arguments:
- attrp
- A pointer to the spawn attributes object that you want to destroy.
Library:
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
Description:
The posix_spawnattr_destroy() function destroys a spawn attributes object. You can reinitialize a destroyed attrp attributes object by using posix_spawnattr_init(); the results of referencing the object after you've destroyed it are undefined.
A spawn attributes object is an opaque object of type posix_spawnattr_t (defined in <spawn.h>), and it specifies the inheritance of process attributes across a spawn operation.
The resulting spawn attributes object (possibly modified by setting individual attribute values), is used to modify the behavior of posix_spawn() or posix_spawnp(). Changes that you make to the spawn attributes object don't affect any processes that you've already spawned.
Returns:
- EOK
- Success.
- EINVAL
- The value specified by attrp is invalid.
Classification:
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | Yes |
| Signal handler | Yes |
| Thread | Yes |