forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
23
Kha/Tools/linux_arm64/std/eval/luv/Barrier.hx
Normal file
23
Kha/Tools/linux_arm64/std/eval/luv/Barrier.hx
Normal file
@ -0,0 +1,23 @@
|
||||
package eval.luv;
|
||||
|
||||
/**
|
||||
Barriers.
|
||||
|
||||
@see https://aantron.github.io/luv/luv/Luv/Barrier
|
||||
**/
|
||||
@:coreType abstract Barrier {
|
||||
/**
|
||||
Allocates and initializes a barrier.
|
||||
**/
|
||||
static public function init(count:Int):Result<Barrier>;
|
||||
|
||||
/**
|
||||
Cleans up a barrier.
|
||||
**/
|
||||
public function destroy():Void;
|
||||
|
||||
/**
|
||||
Waits on a barrier.
|
||||
**/
|
||||
public function wait():Bool;
|
||||
}
|
Reference in New Issue
Block a user