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 class
SpawnAttribute.PGroup
private static class
SpawnAttribute.SetFlags
private static class
SpawnAttribute.Sigdef
private static class
SpawnAttribute.Sigmask
-
Field Summary
Fields Modifier and Type Field Description static int
RESETIDS
static int
SETPGROUP
static int
SETSIGDEF
static int
SETSIGMASK
-
Constructor Summary
Constructors Constructor Description SpawnAttribute()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static SpawnAttribute
flags(short flags)
static SpawnAttribute
pgroup(long pgroup)
(package private) abstract boolean
set(POSIX posix, jnr.ffi.Pointer nativeFileActions)
static SpawnAttribute
sigdef(long sigdef)
static SpawnAttribute
sigmask(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)
-
-