1
1

One more round of sys_limit fixes...sigh

Refs trac:4010

This commit was SVN r30011.

The following Trac tickets were found above:
  Ticket 4010 --> https://svn.open-mpi.org/trac/ompi/ticket/4010
This commit is contained in:
Ralph Castain 2013-12-20 14:44:51 +00:00
parent e49c16b975
commit 7cf0fc5578
2 changed files with 10 additions and 1 deletions

View File

@ -1093,6 +1093,16 @@ AC_INCLUDES_DEFAULT
#include <sys/resource.h>
#endif])
#
# Do we have RLIMIT_AS in <sys/resources.h>? (e.g., Solaris does not)
#
AC_CHECK_DECLS([RLIMIT_AS], [], [], [
AC_INCLUDES_DEFAULT
#if HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif])
# checkpoint results
AC_CACHE_SAVE

View File

@ -212,7 +212,6 @@ int opal_util_init_sys_limits(char **errmsg)
}
}
cleanup:
if (NULL != lim) {
opal_argv_free(lim);
}