diff options
Diffstat (limited to 'src/3rdParty/efsw/System.cpp')
-rwxr-xr-x | src/3rdParty/efsw/System.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/3rdParty/efsw/System.cpp b/src/3rdParty/efsw/System.cpp new file mode 100755 index 0000000..ba68bf4 --- /dev/null +++ b/src/3rdParty/efsw/System.cpp | |||
@@ -0,0 +1,22 @@ | |||
1 | #include <efsw/System.hpp> | ||
2 | #include <efsw/platform/platformimpl.hpp> | ||
3 | |||
4 | namespace efsw { | ||
5 | |||
6 | void System::sleep( const unsigned long& ms ) { | ||
7 | Platform::System::sleep( ms ); | ||
8 | } | ||
9 | |||
10 | std::string System::getProcessPath() { | ||
11 | return Platform::System::getProcessPath(); | ||
12 | } | ||
13 | |||
14 | void System::maxFD() { | ||
15 | Platform::System::maxFD(); | ||
16 | } | ||
17 | |||
18 | Uint64 System::getMaxFD() { | ||
19 | return Platform::System::getMaxFD(); | ||
20 | } | ||
21 | |||
22 | } // namespace efsw | ||