Package jnr.posix
Class SpawnAttribute
- java.lang.Object
-
- jnr.posix.SpawnAttribute
-
- Direct Known Subclasses:
SpawnAttribute.PGroup,SpawnAttribute.SetFlags,SpawnAttribute.Sigdef,SpawnAttribute.Sigmask
public abstract class SpawnAttribute extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classSpawnAttribute.PGroupprivate static classSpawnAttribute.SetFlagsprivate static classSpawnAttribute.Sigdefprivate static classSpawnAttribute.Sigmask
-
Field Summary
Fields Modifier and Type Field Description static intRESETIDSstatic intSETPGROUPstatic intSETSIGDEFstatic intSETSIGMASK
-
Constructor Summary
Constructors Constructor Description SpawnAttribute()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static SpawnAttributeflags(short flags)static SpawnAttributepgroup(long pgroup)(package private) abstract booleanset(POSIX posix, jnr.ffi.Pointer nativeFileActions)static SpawnAttributesigdef(long sigdef)static SpawnAttributesigmask(long sigmask)
-
-
-
Field Detail
-
RESETIDS
public static final int RESETIDS
- See Also:
- Constant Field Values
-
SETPGROUP
public static final int SETPGROUP
- See Also:
- Constant Field Values
-
SETSIGDEF
public static final int SETSIGDEF
- See Also:
- Constant Field Values
-
SETSIGMASK
public static final int SETSIGMASK
- See Also:
- Constant Field Values
-
-
Method Detail
-
set
abstract boolean set(POSIX posix, jnr.ffi.Pointer nativeFileActions)
-
pgroup
public static SpawnAttribute pgroup(long pgroup)
-
flags
public static SpawnAttribute flags(short flags)
-
sigdef
public static SpawnAttribute sigdef(long sigdef)
-
sigmask
public static SpawnAttribute sigmask(long sigmask)
-
-