C# Class SharpOS.Kernel.ADC.X86.Barrier

Mostrar archivo Open project: sharpos/SharpOS Class Usage Examples

Public Methods

Method Description
Enter ( ) : void

Starts the barrier, no other threads can run untill Exit is called

This function should be made "inline" by the AOT

Exit ( ) : void

Ends the barrier

This function should be made "inline" by the AOT

Method Details

Enter() public static method

Starts the barrier, no other threads can run untill Exit is called
This function should be made "inline" by the AOT
public static Enter ( ) : void
return void

Exit() public static method

Ends the barrier
This function should be made "inline" by the AOT
public static Exit ( ) : void
return void