mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
tests: Mock virProcessGetMaxMemLock()
Up until now we've implicitly relied on the fact that failures reported from this function were simply ignored, but that's about to change and so we need a proper mock. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
b431f3c7fd
commit
6564cb01e1
@ -79,7 +79,7 @@ int virProcessSetMaxProcesses(pid_t pid, unsigned int procs);
|
||||
int virProcessSetMaxFiles(pid_t pid, unsigned int files);
|
||||
int virProcessSetMaxCoreSize(pid_t pid, unsigned long long bytes);
|
||||
|
||||
int virProcessGetMaxMemLock(pid_t pid, unsigned long long *bytes);
|
||||
int virProcessGetMaxMemLock(pid_t pid, unsigned long long *bytes) G_GNUC_NO_INLINE;
|
||||
|
||||
/* Callback to run code within the mount namespace tied to the given
|
||||
* pid. This function must use only async-signal-safe functions, as
|
||||
|
@ -21,6 +21,14 @@
|
||||
#include <config.h>
|
||||
#include "virprocess.h"
|
||||
|
||||
int
|
||||
virProcessGetMaxMemLock(pid_t pid G_GNUC_UNUSED,
|
||||
unsigned long long *bytes)
|
||||
{
|
||||
*bytes = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
virProcessSetMaxMemLock(pid_t pid G_GNUC_UNUSED, unsigned long long bytes G_GNUC_UNUSED)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user