mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 03:46:17 +01:00
tests: Fix error reporting on prlimit() call failure
prlimit() returns its error code in errno, not as a return value. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://gitlab.gnome.org/GNOME/glib/issues/1044
This commit is contained in:
parent
4a53ed2073
commit
6be9f065cb
@ -21,6 +21,7 @@
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef HAVE_SYS_TIME_H
|
||||
#include <sys/time.h>
|
||||
@ -146,8 +147,8 @@ test_thread4 (void)
|
||||
getrlimit (RLIMIT_NPROC, &nl);
|
||||
nl.rlim_cur = 1;
|
||||
|
||||
if ((ret = prlimit (getpid(), RLIMIT_NPROC, &nl, &ol)) != 0)
|
||||
g_error ("prlimit failed: %s", g_strerror (ret));
|
||||
if ((ret = prlimit (getpid (), RLIMIT_NPROC, &nl, &ol)) != 0)
|
||||
g_error ("prlimit failed: %s", g_strerror (errno));
|
||||
|
||||
error = NULL;
|
||||
thread = g_thread_try_new ("a", thread1_func, NULL, &error);
|
||||
@ -156,7 +157,7 @@ test_thread4 (void)
|
||||
g_error_free (error);
|
||||
|
||||
if ((ret = prlimit (getpid (), RLIMIT_NPROC, &ol, NULL)) != 0)
|
||||
g_error ("resetting RLIMIT_NPROC failed: %s", g_strerror (ret));
|
||||
g_error ("resetting RLIMIT_NPROC failed: %s", g_strerror (errno));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user