Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <spawn.h>

POSIX_SPAWN_RESETIDS

Interface status: externallyDefinedApi

POSIX_SPAWN_RESETIDS 0x01

Description

Flags that can be set in posix_spawnattr_t. The POSIX_SPAWN_RESETIDS flag in the spawn-flags attribute of the object referenced by attrp governs the effective user ID of the child process. If this flag is not set, the child process shall inherit the parent process' effective user ID. If this flag is set, the child process' effective user ID shall be reset to the parent's real user ID. In either case, if the set-user-ID mode bit of the new process image file is set, the effective user ID of the child process shall become that file's owner ID before the new process image begins execution.

[Top]


POSIX_SPAWN_SETPGROUP

Interface status: externallyDefinedApi

POSIX_SPAWN_SETPGROUP 0x02

Description

Flags that can be set in posix_spawnattr_t If the POSIX_SPAWN_SETPGROUP flag is set in the spawn-flags attribute of the object referenced by attrp, and the spawn-pgroup attribute of the same object is non-zero, then the child's process group shall be as specified in the spawn-pgroup attribute of the object referenced by attrp.

[Top]


POSIX_SPAWN_SETSIGDEF

Interface status: externallyDefinedApi

POSIX_SPAWN_SETSIGDEF 0x04

Description

Flags that can be set in posix_spawnattr_t If the POSIX_SPAWN_SETSIGDEF flag is set in the spawn-flags attribute of the object referenced by attrp, the signals specified in the spawn-sigdefault attribute of the same object shall be set to their default actions in the child process. Signals set to the default action in the parent process shall be set to the default action in the child process.

[Top]


POSIX_SPAWN_SETSIGMASK

Interface status: externallyDefinedApi

POSIX_SPAWN_SETSIGMASK 0x08

Description

Flags that can be set in posix_spawnattr_t If the POSIX_SPAWN_SETSIGMASK flag is set in the spawn-flags attribute of the object referenced by attrp, the child process shall initially have the signal mask specified in the spawn-sigmask attribute of the object referenced by attrp.

[Top]


POSIX_SPAWN_SETSCHEDPARAM

Interface status: externallyDefinedApi

POSIX_SPAWN_SETSCHEDPARAM 0x10

Description

Flags that can be set in posix_spawnattr_t If the POSIX_SPAWN_SETSCHEDPARAM flag is set in the spawn-flags attribute of the object referenced by attrp, but POSIX_SPAWN_SETSCHEDULER is not set, the new process image shall initially have the scheduling policy of the calling process with the scheduling parameters specified in the spawn-schedparam attribute of the object referenced by attrp.

[Top]


POSIX_SPAWN_SETSCHEDULER

Interface status: externallyDefinedApi

POSIX_SPAWN_SETSCHEDULER 0x20

Description

Flags that can be set in posix_spawnattr_t If the POSIX_SPAWN_SETSCHEDULER flag is set in the spawn-flags attribute of the object referenced by attrp (regardless of the setting of the POSIX_SPAWN_SETSCHEDPARAM flag), the new process image shall initially have the scheduling policy specified in the spawn-schedpolicy attribute of the object referenced by attrp and the scheduling parameters specified in the spawn-schedparam attribute of the same object.