• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2021 The vulkano developers
2 // Licensed under the Apache License, Version 2.0
3 // <LICENSE-APACHE or
4 // https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5 // license <LICENSE-MIT or https://opensource.org/licenses/MIT>,
6 // at your option. All files in the project carrying such
7 // notice may not be copied, modified, or distributed except
8 // according to those terms.
9 
10 pub use self::external_semaphore_handle_type::ExternalSemaphoreHandleType;
11 pub use self::semaphore::Semaphore;
12 pub use self::semaphore::SemaphoreError;
13 
14 mod external_semaphore_handle_type;
15 mod semaphore;
16