Merge branch 'master' into runtime

This commit is contained in:
dcode
2019-04-08 18:37:38 +02:00
12 changed files with 53 additions and 73 deletions

View File

@ -227,7 +227,7 @@ export namespace atomic {
// @ts-ignore: decorator
@builtin
export declare function notify<T>(ptr: usize, count: i32): i32;
export declare function notify(ptr: usize, count: i32): i32;
}
// @ts-ignore: decorator
@ -368,10 +368,6 @@ export namespace i32 {
@builtin
export declare function wait(ptr: usize, expected: i32, timeout: i64): AtomicWaitResult;
// @ts-ignore: decorator
@builtin
export declare function notify(ptr: usize, count: i32): i32;
export namespace rmw8 {
// @ts-ignore: decorator
@ -587,10 +583,6 @@ export namespace i64 {
@builtin
export declare function wait(ptr: usize, expected: i64, timeout: i64): AtomicWaitResult;
// @ts-ignore: decorator
@builtin
export declare function notify(ptr: usize, count: i32): i32;
export namespace rmw8 {
// @ts-ignore: decorator

View File

@ -187,10 +187,10 @@ declare namespace atomic {
export function xchg<T>(ptr: usize, value: T, immOffset?: usize): T;
/** Atomically compares and exchanges an integer value in memory if the condition is met. */
export function cmpxchg<T>(ptr: usize, expected: T, replacement: T, immOffset?: usize): T;
/** Performs a wait operation on an integer value in memory suspending this agent if the condition is met. */
/** Performs a wait operation on an address in memory suspending this agent if the integer condition is met. */
export function wait<T>(ptr: usize, expected: T, timeout: i64): AtomicWaitResult;
/** Performs a notify operation on an integer value in memory waking up suspended agents. */
export function notify<T>(ptr: usize, count: i32): i32;
/** Performs a notify operation on an address in memory waking up suspended agents. */
export function notify(ptr: usize, count: i32): i32;
}
/** Describes the result of an atomic wait operation. */
@ -258,8 +258,6 @@ declare namespace i32 {
export function store(offset: usize, value: i32, immOffset?: usize): void;
/** Performs a wait operation on a 32-bit integer value in memory suspending this agent if the condition is met. */
export function wait(ptr: usize, expected: i32, timeout: i64): AtomicWaitResult;
/** Performs a notify operation on a 32-bit integer value in memory waking up suspended agents. */
export function notify(ptr: usize, count: i32): i32;
/** Atomic 32-bit integer read-modify-write operations on 8-bit values. */
export namespace rmw8 {
/** Atomically adds an 8-bit unsigned integer value in memory. */
@ -362,8 +360,6 @@ declare namespace i64 {
export function store(offset: usize, value: i64, immOffset?: usize): void;
/** Performs a wait operation on a 64-bit integer value in memory suspending this agent if the condition is met. */
export function wait(ptr: usize, expected: i64, timeout: i64): AtomicWaitResult;
/** Performs a notify operation on a 64-bit integer value in memory waking up suspended agents. */
export function notify(ptr: usize, count: i32): i32;
/** Atomic 64-bit integer read-modify-write operations on 8-bit values. */
export namespace rmw8 {
/** Atomically adds an 8-bit unsigned integer value in memory. */