posix_spawnattr_destroy()
QNX SDP8.0C Library ReferenceAPIDeveloper
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. This object is an opaque object of type posix_spawnattr_t (defined in <spawn.h>) that you can use to modify the behavior of posix_spawn() or posix_spawnp().
CAUTION:
- This function renders the posix_spawnattr_t object unusable. You can reuse the object, but you must first reinitialize it with posix_spawnattr_init().
- POSIX specifies that the results are undefined if you use a posix_spawnattr_t object after it has been destroyed, including calling posix_spawnattr_destroy() on an already destroyed object. If you attempt to reference a destroyed attributes object, all of the posix_spawnattr_get*() and posix_spawnattr_set*() operations, as well as posix_spawn(), return EINVAL.
Returns:
- EOK
- Success.
- EINVAL
- The attrp pointer does not refer to a valid attribute structure.
Classification:
| Safety: | |
|---|---|
| Cancellation point | No |
| Signal handler | Yes |
| Thread | Yes |
Page updated:
