libwine: Attempt to increase some user limits that are set too low on some platforms.
This commit is contained in:
parent
f5f37a8566
commit
96d6724eaf
@ -31,6 +31,9 @@
|
|||||||
#ifdef HAVE_SYS_MMAN_H
|
#ifdef HAVE_SYS_MMAN_H
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_SYS_RESOURCE_H
|
||||||
|
# include <sys/resource.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_UNISTD_H
|
#ifdef HAVE_UNISTD_H
|
||||||
# include <unistd.h>
|
# include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
@ -598,6 +601,23 @@ int wine_dll_get_owner( const char *name, char *buffer, int size, int *exists )
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* set_max_limit
|
||||||
|
*
|
||||||
|
* Set a user limit to the maximum allowed value.
|
||||||
|
*/
|
||||||
|
static void set_max_limit( int limit )
|
||||||
|
{
|
||||||
|
struct rlimit rlimit;
|
||||||
|
|
||||||
|
if (!getrlimit( limit, &rlimit ))
|
||||||
|
{
|
||||||
|
rlimit.rlim_cur = rlimit.rlim_max;
|
||||||
|
setrlimit( limit, &rlimit );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* wine_init
|
* wine_init
|
||||||
*
|
*
|
||||||
@ -610,6 +630,10 @@ void wine_init( int argc, char *argv[], char *error, int error_size )
|
|||||||
void *ntdll = NULL;
|
void *ntdll = NULL;
|
||||||
void (*init_func)(void);
|
void (*init_func)(void);
|
||||||
|
|
||||||
|
/* force a few limits that are set too low on some platforms */
|
||||||
|
set_max_limit( RLIMIT_NOFILE );
|
||||||
|
set_max_limit( RLIMIT_AS );
|
||||||
|
|
||||||
wine_init_argv0_path( argv[0] );
|
wine_init_argv0_path( argv[0] );
|
||||||
build_dll_path();
|
build_dll_path();
|
||||||
__wine_main_argc = argc;
|
__wine_main_argc = argc;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user