mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-12-27 16:49:24 -05:00
12 lines
279 B
Dart
12 lines
279 B
Dart
// Copyright (c) 2016, Hoylen Sue. All rights reserved. Use of this source code
|
|
// is governed by a BSD-style license that can be found in the LICENSE file.
|
|
|
|
/// Mutual exclusion.
|
|
///
|
|
library mutex;
|
|
|
|
import 'dart:async';
|
|
|
|
part 'src/mutex.dart';
|
|
part 'src/read_write_mutex.dart';
|