Browse Source

aya: add aya::maps::array and move ProgramArray under it

Alessandro Decina 4 years ago
parent
commit
c3b902137b

+ 4 - 0
aya/src/maps/array/mod.rs

@@ -0,0 +1,4 @@
+//! Array types.
+mod program_array;
+
+pub use program_array::ProgramArray;

+ 0 - 0
aya/src/maps/program_array.rs → aya/src/maps/array/program_array.rs


+ 0 - 1
aya/src/maps/hash_map/hash_map.rs

@@ -1,4 +1,3 @@
-//! Hash map types.
 use std::{
 use std::{
     convert::TryFrom,
     convert::TryFrom,
     marker::PhantomData,
     marker::PhantomData,

+ 1 - 0
aya/src/maps/hash_map/mod.rs

@@ -1,3 +1,4 @@
+//! Hash map types.
 use std::mem;
 use std::mem;
 
 
 use crate::{
 use crate::{

+ 2 - 2
aya/src/maps/mod.rs

@@ -40,15 +40,15 @@ use crate::{
     Pod,
     Pod,
 };
 };
 
 
+pub mod array;
 pub mod hash_map;
 pub mod hash_map;
 mod map_lock;
 mod map_lock;
 pub mod perf;
 pub mod perf;
-pub mod program_array;
 
 
+pub use array::ProgramArray;
 pub use hash_map::{HashMap, PerCpuHashMap};
 pub use hash_map::{HashMap, PerCpuHashMap};
 pub use map_lock::*;
 pub use map_lock::*;
 pub use perf::PerfEventArray;
 pub use perf::PerfEventArray;
-pub use program_array::ProgramArray;
 
 
 #[derive(Error, Debug)]
 #[derive(Error, Debug)]
 pub enum MapError {
 pub enum MapError {