blob: 9322b06c8006ffb62791cf0691e7ba2203d7d25d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef EFSW_SYSTEMIMPLPOSIX_HPP
#define EFSW_SYSTEMIMPLPOSIX_HPP
#include <efsw/base.hpp>
#if defined( EFSW_PLATFORM_POSIX )
namespace efsw { namespace Platform {
class System {
public:
static void sleep( const unsigned long& ms );
static std::string getProcessPath();
static void maxFD();
static Uint64 getMaxFD();
};
}} // namespace efsw::Platform
#endif
#endif
|