mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 10:42:36 +01:00
Log maxfiles to file and stderr on *NIX
This commit is contained in:
parent
3571e6ef85
commit
37f24d8c1c
@ -35,6 +35,7 @@
|
||||
#include <QDirIterator>
|
||||
#include <QFileInfo>
|
||||
#include <QSound>
|
||||
#include <QMessageBox>
|
||||
|
||||
#include <clocale>
|
||||
|
||||
@ -105,6 +106,17 @@ bool gui_application::Init()
|
||||
welcome->exec();
|
||||
}
|
||||
|
||||
// Check maxfiles
|
||||
if (utils::get_maxfiles() < 4096)
|
||||
{
|
||||
QMessageBox::warning(nullptr,
|
||||
tr("Warning"),
|
||||
tr("The current limit of maximum file descriptors is too low.\n"
|
||||
"Some games will crash.\n"
|
||||
"\n"
|
||||
"Please increase the limit before running RPCS3."));
|
||||
}
|
||||
|
||||
if (m_main_window && !m_main_window->Init(m_with_cli_boot))
|
||||
{
|
||||
return false;
|
||||
|
@ -11,6 +11,7 @@
|
||||
#include "stringapiset.h"
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#include <sys/resource.h>
|
||||
#include <sys/utsname.h>
|
||||
#include <errno.h>
|
||||
#endif
|
||||
@ -358,6 +359,19 @@ std::string utils::get_OS_version()
|
||||
return output;
|
||||
}
|
||||
|
||||
int utils::get_maxfiles()
|
||||
{
|
||||
#ifdef _WIN32
|
||||
// Virtually unlimited on Windows
|
||||
return INT_MAX;
|
||||
#else
|
||||
struct rlimit limits;
|
||||
ensure(getrlimit(RLIMIT_NOFILE, &limits) == 0);
|
||||
|
||||
return limits.rlim_cur;
|
||||
#endif
|
||||
}
|
||||
|
||||
static constexpr ullong round_tsc(ullong val)
|
||||
{
|
||||
return utils::rounded_div(val, 1'000'000) * 1'000'000;
|
||||
|
@ -51,6 +51,8 @@ namespace utils
|
||||
|
||||
std::string get_OS_version();
|
||||
|
||||
int get_maxfiles();
|
||||
|
||||
ullong get_tsc_freq();
|
||||
|
||||
u64 get_total_memory();
|
||||
|
Loading…
Reference in New Issue
Block a user