Skip to content

Commit

Permalink
Fix a flag grnxx::io::POOL_CREATE_OR_OPEN.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-yata committed Mar 13, 2013
1 parent 28296af commit c6a0eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/io/pool.hpp
Expand Up @@ -84,7 +84,7 @@ constexpr PoolFlags POOL_HUGE_TLB = PoolFlags::define(0x0080);
// Open an existing pool.
constexpr PoolFlags POOL_OPEN = PoolFlags::define(0x0100);
// Create a pool, if it does not exist, or open an existing pool.
constexpr PoolFlags POOL_CREATE_OR_OPEN = PoolFlags::define(0x0040);
constexpr PoolFlags POOL_CREATE_OR_OPEN = PoolFlags::define(0x0140);
// Create a temporary pool.
constexpr PoolFlags POOL_TEMPORARY = PoolFlags::define(0x0200);

Expand Down

0 comments on commit c6a0eb9

Please sign in to comment.