mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 16:37:00 +00:00
29 lines
735 B
C++
29 lines
735 B
C++
// -*- C++ -*-
|
|
|
|
//=============================================================================
|
|
/**
|
|
* @file os_sysinfo.h
|
|
*
|
|
* $Id: os_sysinfo.h 97827 2014-08-02 17:34:32Z johnnyw $
|
|
*
|
|
* @author Johnny Willemsen <jwillemsen@remedy.nl>
|
|
*/
|
|
//=============================================================================
|
|
|
|
#ifndef ACE_OS_INCLUDE_SYS_OS_SYSINFO_H
|
|
#define ACE_OS_INCLUDE_SYS_OS_SYSINFO_H
|
|
|
|
#include /**/ "ace/pre.h"
|
|
|
|
#include /**/ "ace/config-lite.h"
|
|
|
|
#if !defined (ACE_LACKS_PRAGMA_ONCE)
|
|
# pragma once
|
|
#endif /* ACE_LACKS_PRAGMA_ONCE */
|
|
|
|
#if defined (ACE_HAS_SYS_SYSINFO_H)
|
|
# include /**/ <sys/sysinfo.h>
|
|
#endif /* ACE_HAS_SYS_SYSINFO_H */
|
|
|
|
#include /**/ "ace/post.h"
|
|
#endif /* ACE_OS_INCLUDE_SYS_OS_SYSINFO_H */
|