mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
19 lines
250 B
C++
19 lines
250 B
C++
/**
|
|
* @file libipc/platform/posix/mmap.h
|
|
* @author mutouyun (orz@orzz.org)
|
|
*/
|
|
#pragma once
|
|
|
|
#include "libipc/def.h"
|
|
|
|
LIBIPC_NAMESPACE_BEG_
|
|
namespace posix {
|
|
|
|
enum : int {
|
|
succ = 0,
|
|
failed = -1,
|
|
};
|
|
|
|
} // namespace posix
|
|
LIBIPC_NAMESPACE_END_
|